#include <chart.h>
Inheritance diagram for Series:

| Series::Series | ( | char * | title | ) | [inline] |
Constructor
| title | series title (should be unique) |
| Series::~Series | ( | ) | [inline] |
Destructor
| void Series::Add | ( | double | x, | |
| double | y | |||
| ) |
Adds a 2D point to a series
| x | x coordinate | |
| y | y coordinate |
| void Series::Add | ( | double * | x, | |
| double * | y, | |||
| int | n | |||
| ) |
Adds an array of 2D points to series
| x | array | |
| y | array | |
| n | array length |
| Coord Series::Min | ( | ) | [inline] |
Returns minimum 2D point of a series
| Coord Series::Max | ( | ) | [inline] |
Returns maximum 2D point of a series
| char* Series::Title | ( | ) | [inline] |
Returns series title
| bool Series::operator== | ( | Series & | s | ) | [inline] |
Equality operator
| VDKReadWriteValueProp<Series,VDKRgb> Series::Color |
Sets/gets color (defaults to black)
| VDKReadWriteValueProp<Series,GdkLineStyle> Series::LineStyle |
Sets/gets line style (defaults to GDK_LINE_SOLID) can be:
| VDKReadWriteValueProp<Series,int> Series::LineWidth |
Sets/gets line width (defaults to 1)
| VDKReadWriteValueProp<Series,GdkCapStyle> Series::LineCapStyle |
Sets/gets line cap style (defaults to GDK_CAP_NOT_LAST) can be:
| VDKReadWriteValueProp<Series,GdkJoinStyle> Series::LineJoinStyle |
Sets/gets line join style (defaults to GDK_JOIN_MITER) can be:
1.5.1