![]() |
App Engine Python SDK
v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
|
Public Member Functions | |
def | __init__ |
def | AddBars |
def | GetDependentAxes |
def | GetIndependentAxes |
def | GetDependentAxis |
def | GetIndependentAxis |
def | GetMinMaxValues |
![]() | |
def | __init__ |
def | AddFormatter |
def | AddSeries |
def | GetDependentAxes |
def | GetIndependentAxes |
def | GetDependentAxis |
def | GetIndependentAxis |
def | GetFormattedChart |
def | GetMinMaxValues |
def | AddAxis |
def | GetAxis |
def | SetAxis |
Public Attributes | |
vertical | |
stacked | |
style | |
![]() | |
data | |
auto_color | |
auto_scale | |
auto_legend | |
formatters | |
display | |
Additional Inherited Members | |
![]() | |
bottom | |
left | |
right | |
top | |
Represents a bar chart. Object attributes: vertical: if True, the bars will be vertical. Default is True. stacked: if True, the bars will be stacked. Default is False. style: The BarChartStyle for all bars on this chart, specifying bar thickness and gaps between bars.
def google.appengine._internal.graphy.bar_chart.BarChart.__init__ | ( | self, | |
points = None |
|||
) |
Constructor for BarChart objects.
def google.appengine._internal.graphy.bar_chart.BarChart.AddBars | ( | self, | |
points, | |||
label = None , |
|||
color = None |
|||
) |
Add a series of bars to the chart. points: List of y-values for the bars in this series label: Name of the series (used in the legend) color: Hex string, like '00ff00' for green This is a convenience method which constructs & appends the DataSeries for you.
def google.appengine._internal.graphy.bar_chart.BarChart.GetDependentAxes | ( | self | ) |
Get the dependendant axes, which depend on orientation.
def google.appengine._internal.graphy.bar_chart.BarChart.GetDependentAxis | ( | self | ) |
Get the main dependendant axis, which depends on orientation.
def google.appengine._internal.graphy.bar_chart.BarChart.GetIndependentAxes | ( | self | ) |
Get the independendant axes, which depend on orientation.
def google.appengine._internal.graphy.bar_chart.BarChart.GetIndependentAxis | ( | self | ) |
Get the main independendant axis, which depends on orientation.
def google.appengine._internal.graphy.bar_chart.BarChart.GetMinMaxValues | ( | self | ) |
Get the largest & smallest bar values as (min_value, max_value).