Dundas Chart for Windows Forms
BubbleScaleMax Custom Attribute
See Also Send comments on this topic.
Custom Attributes > BubbleScaleMax Custom Attribute



Glossary Item Box

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.WinControl
  ...

' Set the Series Max Scale Size to 25% of the chart area.
Chart1.Series(0)("BubbleScaleMax") = "25"

C# Copy Code
using Dundas.Charting.WinControl;
   ...

// 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 or Auto
Default Value: Auto
2D / 3D Limitations: No
Applies to Chart Element: Series Objects
Applies to Chart Types: Bubble

See Also

©2009. All Rights Reserved.