Module chart
source code
Module Contents
This is the main module. It contains the base classes for chart
widgets.
-
class Chart: base class for all chart widgets.
-
class ChartObject: base class for all things that can be drawn on a
chart.
-
class Background: background of a chart widget.
-
class Title: title of a chart.
Colors
All colors have to be (r, g, b)
tuples. The value of
r, g
and b
has to be between 0.0 and 1.0.
For example (0, 0, 0)
is black and (1, 1,
1)
is white.
Author: Sven Festersen (sven@sven-festersen.de)
|
Chart
This is the base class for all chart widgets.
|
|
ChartObject
This is the base class for all things that can be drawn in a chart,
e.g.
|
|
Background
The background of a chart.
|
|
Title
The title of a chart.
|