The graph will only display one data point if you use PlotY. If you would like to see multiple points that represent the history of the data values, use ChartY instead.
Also, if you want to see the values vs. time, you will need to A.) specify the X data in date/time format as specified in the remarks of the documentation for the CWAxis.FormatString property, and B.) set the format string of the axis such that the axis labels display date/time values. For A.), if the X values are at a fixed interval, the easiest way to do this would be to set the DefaultxFirst and DefaultxInc properties, then just call PlotY/ChartY for the Y data values. If they are not at a fixed interval, you will need to explicitly specify the X value along with the Y value and call PlotX
Y/ChartXY instead of PlotY/ChartY. For B.), you can configure this in the Format tab of the graph's property pages.
- Elton