XppWindow
|
+---- XppCanvas
|
+----XppXYPlot
XppXYPlot(int width, int height, int x=0, int y=0, char *name = "xyplot");
(x,y) with
the specified width and height and name.
If either x or y is negative then
the plot must be positioned on the root window using the mouse.
XppXYPlot(XppWindow& win, int width, int height, int x = 0, int y = 0);
win
at the relative position (x,y) with width w
and height h.
void SetStyleDots(void);
void SetStyleLines(void);
void Plot(double x, double y);
void Plot(double *y, int n);
void Plot(double *x, double *y, int n);
void Reset(void);