ActiveReports for .NET 3 Online Help Request technical support
BubbleXY Charts
User Guide > Concepts > Charts > Chart Types > XY Charts > BubbleXY Charts

Glossary Item Box

The BubbleXY chart is an XY chart in which bubbles represent data points. The BubbleXY uses a numerical X axis and plots the x values and first set of Y values on the chart. The second Y value is used to set the size of the bubble.

 

Chart Information

# of Y values/data point 2
# of Series 1 or more
Marker Support Series or Data Point. Marker labels use the second Y value as the default value.
Custom Properties MaxSizeFactor gets or sets the maximum size of the bubble radius. Values must be less than or equal to 1. Default is .25.
MaxValue gets or sets the bubble size that is used as the maximum.
MinValue gets or sets the bubble size that is used as the minimum.
Shape gets or sets the shape of the bubbles. Uses or returns a valid MarkerStyle enumeration value.

 

Below is an example of setting the custom chart properties at run time for a bubble XY chart as shown in the image above.

' Visual Basic
Me.ChartControl1.Series(0).Properties("MaxSizeFactor") = 0.25F
Me.ChartControl1.Series(0).Properties("MaxValue") = 50.0R
Me.ChartControl1.Series(0).Properties("MinValue") = 0.0R
Me.ChartControl1.Series(0).Properties("Shape") = MarkerStyle.InvTriangle
 
// C#
this.chartControl1.Series[0].Properties["MaxSizeFactor"] = .25f;
this.chartControl1.Series[0].Properties["MinValue"] = 0D;
this.chartControl1.Series[0].Properties["MaxValue"] = 50D;
this.chartControl1.Series[0].Properties["Shape"] = MarkerStyle.InvTriangle;

 

©2009. All Rights Reserved.