App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | Public Attributes | List of all members
google.appengine._internal.graphy.common.Axis Class Reference
Inheritance diagram for google.appengine._internal.graphy.common.Axis:

Public Member Functions

def __init__
 

Public Attributes

 min
 
 max
 
 labels
 
 label_positions
 
 grid_spacing
 
 label_gridlines
 

Detailed Description

Represents one axis.

Object setings:
  min:    Minimum value for the bottom or left end of the axis
  max:    Max value.
  labels: List of labels to show along the axis.
  label_positions: List of positions to show the labels at.  Uses the scale
                   set by min & max, so if you set min = 0 and max = 10, then
                   label positions [0, 5, 10] would be at the bottom,
                   middle, and top of the axis, respectively.
  grid_spacing:  Amount of space between gridlines (in min/max scale).
                 A value of 0 disables gridlines.
  label_gridlines: If True, draw a line extending from each label
                 on the axis all the way across the chart.

Constructor & Destructor Documentation

def google.appengine._internal.graphy.common.Axis.__init__ (   self,
  axis_min = None,
  axis_max = None 
)
Construct a new Axis.

Args:
  axis_min: smallest value on the axis
  axis_max: largest value on the axis

The documentation for this class was generated from the following file: