MindFusion.Charting Programmer's Guide

LineChart.MaxBubbleRadius Property

See Also
 





Gets or sets the radius length of the biggest bubble.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public float MaxBubbleRadius { get; set; }

Visual Basic  Copy Code

Public Property MaxBubbleRadius As Single

 Property Value

A float value that represents the radius length.

 Remarks

The property sets the radius of the biggest bubble. The radius of the smallest bubble is specified with MinBubbleRadius. The length of the radiuses of all other bubbles are calculated based on their value compared to the value of the biggest and smallest bubble.

Use the Y2Data property to specify the values of the bubbles. If you do not need a third data array for the bubble chart, the size of the bubble is calculated based on its value in the YData list.

Default value for the MaxBubbleRadius property is 30.

 See Also