Gets or sets the number of lines to use in a
ThreeLineBreak chart.
| Visual Basic |
Copy Code |
Imports Dundas.Charting.WebControl
...
' Set the Series NumberOfLinesInBreak.
Chart1.Series(0)("NumberOfLinesInBreak") = "1.2"
|
| C# |
Copy Code |
using Dundas.Charting.WebControl;
...
// Set the Series NumberOfLinesInBreak.
Chart1.Series[0]["NumberOfLinesInBreak"] = "1.2";
|
Remarks
Gets or sets the number of lines to use in a ThreeLineBreak chart.
| Custom Attribute Summary |
| Possible Values: |
Any Integer > 0. |
| Default Value: |
3 |
| 2D / 3D Limitations: |
No |
| Applies to Chart Element: |
Series Objects |
| Applies to Chart Types: |
Three Line Break |
See Also