Gets or sets the name of the series to be used as the datasource for the Error Bar chart calculations.
Visual Basic |
Copy Code |
Imports Dundas.Charting.WebControl
...
' Set the name of the Series to be used.
Chart1.Series(0)("ErrorBarSeries") = "MySeriesName"
|
C# |
Copy Code |
using Dundas.Charting.WebControl;
...
// Set the name of the Series to be used.
Chart1.Series[0]["ErrorBarSeries"] = "MySeriesName";
|
Remarks
The named series must exist otherwise an exception will be thrown.
Custom Attribute Summary |
Possible Values: |
An existing series name. |
Default Value: |
none |
2D / 3D Limitations: |
No |
Applies to Chart Element: |
Series Objects |
Applies to Chart Types: |
Error Bar |
See Also