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

Public Member Functions

def __init__
 
def AddLine
 
def AddSeries
 
- Public Member Functions inherited from google.appengine._internal.graphy.common.BaseChart
def __init__
 
def AddFormatter
 
def AddSeries
 
def GetDependentAxes
 
def GetIndependentAxes
 
def GetDependentAxis
 
def GetIndependentAxis
 
def GetFormattedChart
 
def GetMinMaxValues
 
def AddAxis
 
def GetAxis
 
def SetAxis
 

Additional Inherited Members

- Public Attributes inherited from google.appengine._internal.graphy.common.BaseChart
 data
 
 auto_color
 
 auto_scale
 
 auto_legend
 
 formatters
 
 display
 
- Properties inherited from google.appengine._internal.graphy.common.BaseChart
 bottom
 
 left
 
 right
 
 top
 

Detailed Description

Represents a line chart.

Member Function Documentation

def google.appengine._internal.graphy.line_chart.LineChart.AddLine (   self,
  points,
  label = None,
  color = None,
  pattern = LineStyle.SOLID,
  width = LineStyle.THIN,
  markers = None 
)
Add a new line to the chart.

This is a convenience method which constructs the DataSeries and appends it
for you.  It returns the new series.

  points:  List of equally-spaced y-values for the line
  label:   Name of the line (used for the legend)
  color:   Hex string, like 'ff0000' for red
  pattern: Tuple for (length of segment, length of gap).  i.e.
       LineStyle.DASHED
  width:   Width of the line (i.e. LineStyle.THIN)
  markers: List of Marker objects to attach to this line (see DataSeries
       for more info)
def google.appengine._internal.graphy.line_chart.LineChart.AddSeries (   self,
  points,
  color = None,
  style = LineStyle.solid,
  markers = None,
  label = None 
)
DEPRECATED

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