Gets or sets the relative DataPoint width.
Visual Basic |
Copy Code |
Imports Dundas.Charting.WebControl
...
' Set the Series PointWidth.
Chart1.Series(0)("PointWidth") = "1.2"
|
C# |
Copy Code |
using Dundas.Charting.WebControl;
...
// Set the Series PointWidth.
Chart1.Series[0]["PointWidth"] = "1.2";
|
Remarks
Gets or sets the relative DataPoint width.
Custom Attribute Summary |
Possible Values: |
Any value from 0 to 2 |
Default Value: |
0.8 |
2D / 3D Limitations: |
No |
Applies to Chart Elements: |
Series Objects |
Applies to Chart Types: |
Bar, CandleStick, Column, StackedBar, StackedBar100, StackedColumn, StackedColumn100, Stock, BoxPlot, ErrorBar, Gantt, RangeColumn |
See Also