Gets or sets the minimum size of the bubble radius as a percentage of the chart area size.
Visual Basic |
Copy Code |
Imports Dundas.Charting.WebControl
...
' Set the Series Min Size to 5% of the chart area.
Chart1.Series(0)("BubbleMinSize") = "5"
|
C# |
Copy Code |
using Dundas.Charting.WebControl;
...
// Set the Series Min Size to 5% of the chart area.
Chart1.Series[0]["BubbleMinSize"] = "5";
|
Remarks
Gets or sets the minimum size of the bubble radius as a percentage of the chart area size.
Custom Attribute Summary |
Possible Values: |
Ranges from 0 to 100. |
Default Value: |
3 |
2D / 3D Limitations: |
No |
Applies to Chart Element: |
Series Objects |
Applies to Chart Types: |
Bubble |
See Also