| Spread for ASP.NET 8.0 Product Documentation > Developer's Guide > Working with the Chart Control > Creating Charts > Connecting to Data > Using an Unbound Data Source |
You can add double values to the Chart control without using a data source.
Use the Values property of the series to add data.
The following example demonstrates adding unbound data to the control.
| C# |
Copy Code
|
|---|---|
BarSeries series = new BarSeries();
series.Values.Add(2.0);
series.Values.Add(4.0);
series.Values.Add(3.0);
series.Values.Add(5.0);
|
|
| VB |
Copy Code
|
|---|---|
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) |
|