[]
You can use the chart in an unbound state without binding it to the data source. In such case, add double values to the chart control without using a datasource.
The following example demonstrates adding unbound data to the control.
BarSeries series = new BarSeries();
series.Values.Add(2.0);
series.Values.Add(4.0);
series.Values.Add(3.0);
series.Values.Add(5.0);
Dim series As New BarSeries()
series.Values.Add(2.0)
series.Values.Add(4.0)
series.Values.Add(3.0)
series.Values.Add(5.0)
Run the Chart Designer.
Select the target Chart Model from the tree menu on the left.
Open the Plot Area Collection Editor from Plot Area in the Other section of the property list on the right.
Open the Series Collection Editor from Series in the Data section.
Open the Value Collection Editor from Values in the Data section.
Set the values as required.
!type=note
Note: For information on starting Chart Designer, refer to Chart Designer in the SPREAD Designer Guide.