KM
kevin musters
June 24, 2004 12:40 PM UTC
I settled for using a ListArray, loading in my data using a "for" statement. It works, not what I wanted though.
DJ
Davis Jebaraj
Syncfusion Team
June 25, 2004 12:16 PM UTC
Hi Kevin,
The ChartControl can be used with a data source by implementing the IChartSerieModel interface. I will create a sample and put it up for download at the earliest.
The Points.Add method has the following overloads:
public void Add(double x, params double[] yValues)
public void Add(double x, double y)
public void Add(double x, params DateTime[] dates)
public void Add(double x, DateTime date)
public void Add(ChartPoint cp)
public void Add(DateTime date, params double[] yValues)
public void Add(DateTime date, double y)
As you can see, the DateTime values are used when needed. The most common overload would be the
public void Add(double x, double y)
with a single double value for the x and y axes.
Regards,
Davis