30 #define FL_BAR_CHART 0
31 #define FL_HORBAR_CHART 1
32 #define FL_LINE_CHART 2
33 #define FL_FILL_CHART 3
34 #define FL_SPIKE_CHART 4
35 #define FL_PIE_CHART 5
36 #define FL_SPECIALPIE_CHART 6
38 #define FL_FILLED_CHART FL_FILL_CHART
40 #define FL_CHART_MAX 128
41 #define FL_CHART_LABEL_MAX 18
44 struct FL_CHART_ENTRY {
47 char str[FL_CHART_LABEL_MAX+1];
85 Fl_Chart(
int X,
int Y,
int W,
int H,
const char *L = 0);
91 void add(
double val,
const char *str = 0,
unsigned col = 0);
93 void insert(
int ind,
double val,
const char *str = 0,
unsigned col = 0);
95 void replace(
int ind,
double val,
const char *str = 0,
unsigned col = 0);
101 void bounds(
double *a,
double *b)
const {*a = min; *b = max;}
103 void bounds(
double a,
double b);
108 int size()
const {
return numb;}
float val
For internal use only.
Definition: Fl_Chart.H:45
Fl_Chart displays simple charts.
Definition: Fl_Chart.H:72
void textfont(Fl_Font s)
Sets the chart's text font to s.
Definition: Fl_Chart.H:122
For internal use only.
Definition: Fl_Chart.H:44
Fl_Color textcolor() const
Gets the chart's text color.
Definition: Fl_Chart.H:130
int size() const
Returns the number of data values in the chart.
Definition: Fl_Chart.H:108
uchar autosize() const
Get whether the chart will automatically adjust the bounds of the chart.
Definition: Fl_Chart.H:138
unsigned col
For internal use only.
Definition: Fl_Chart.H:46
void bounds(double *a, double *b) const
Gets the lower and upper bounds of the chart values.
Definition: Fl_Chart.H:101
int Fl_Fontsize
Size of a font in pixels.
Definition: Enumerations.H:746
void autosize(uchar n)
Set whether the chart will automatically adjust the bounds of the chart.
Definition: Fl_Chart.H:144
unsigned int Fl_Color
an FLTK color value
Definition: Enumerations.H:774
int Fl_Font
A font number is an index into the internal font table.
Definition: Enumerations.H:717
void textcolor(Fl_Color n)
gets the chart's text color to n.
Definition: Fl_Chart.H:132
int maxsize() const
Gets the maximum number of data values for a chart.
Definition: Fl_Chart.H:115
Fl_Font textfont() const
Gets the chart's text font.
Definition: Fl_Chart.H:120
Fl_Fontsize textsize() const
Gets the chart's text size.
Definition: Fl_Chart.H:125
void textsize(Fl_Fontsize s)
gets the chart's text size to s.
Definition: Fl_Chart.H:127
unsigned char uchar
unsigned char
Definition: fl_types.h:30