Gets or sets the bubble size that will be used as the maximum, which is a percentage of the chart area that is set by BubbleMaxSize.
Visual Basic |
Copy Code |
Imports Dundas.Charting.WebControl
...
' Set the Series Max Scale Size to 25% of the chart area.
Chart1.Series(0)("BubbleScaleMax") = "25"
|
C# |
Copy Code |
using Dundas.Charting.WebControl;
...
// Set the Series Max Scale Size to 25% of the chart area.
Chart1.Series[0]["BubbleScaleMax"] = "25";
|
Remarks
Setting this attribute to 20 will result in a bubble value of 20 being displayed with the maximum size. If set to Auto then the largest plotted bubble
will be displayed using the maximum size.
Custom Attribute Summary |
Possible Values: |
Ranges from 0 to 100 |
Default Value: |
15 |
2D / 3D Limitations: |
No |
Applies to Chart Element: |
Series Objects |
Applies to Chart Types: |
Bubble |
See Also