MindFusion.Charting Programmer's Guide

LineChart.MinBubbleRadius Property

See Also
 





Gets or sets the radius length of the smallest bubble.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public float MinBubbleRadius { get; }

Visual Basic  Copy Code

Public ReadOnly Property MinBubbleRadius As Single

 Property Value

A float value that represents the radius of the smallest chart bubble.

 Remarks

The property sets the radius of the smallest bubble. The radius of the biggest bubble is specified with MaxBubbleRadius. 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 MinBubbleRadius property is 10.

 See Also