Gets or sets the size of the horizontal segment of the callout line.
Visual Basic |
Copy Code |
Imports Dundas.Charting.WebControl
...
' Set the Series Max Size to 25% of the chart area.
Chart1.Series(0)("LabelsHorizontalLineSize") = "25"
|
C# |
Copy Code |
using Dundas.Charting.WebControl;
...
// Set the Series Max Size to 25% of the chart area.
Chart1.Series[0]["LabelsHorizontalLineSize"] = "25";
|
Remarks
Gets or sets the size of the horizontal segment of the callout line. This attribute is only applicable to the Pie or Doughnut chart when the PieLabelStyle is set to Outside.
Custom Attribute Summary |
Possible Values: |
Ranges from 0 to 100. |
Default Value: |
1 |
2D / 3D Limitations: |
2D Only (for 3D charts, see 3DLabelLineSize) |
Applies to Chart Element: |
Series and DataPoint Objects |
Applies to Chart Types: |
Pie, Doughnut |
See Also