Gets or sets the size of the radial 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)("LabelsRadialLineSize") = "25"
|
C# |
Copy Code |
using Dundas.Charting.WebControl;
...
// Set the Series Max Size to 25% of the chart area.
Chart1.Series[0]["LabelsRadialLineSize"] = "25";
|
Remarks
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