Search
BubbleRenderer Class
Remarks See Also
 






A SeriesRenderer that draws bubbles representing data items in its containing plot.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public class BubbleRenderer : Renderer2D

Visual Basic  Copy Code

Public Class BubbleRenderer
    Inherits Renderer2D

 Remarks

The Series assigned to this renderer must support at least three Dimensions, where first and second dimensions specify position and third dimension specifies size. BubbleRenderer must be placed inside a Plot2D component. It draws each data item as a bubble, whose radius is returned by GetValue for third dimension. If the GetLabel method of Series object returns InnerLabel string, the label is drawn inside its corresponding bubble by default. Label position can be changed using the LabelAlignment property.

 Inheritance Hierarchy

System.Object
    MindFusion.Charting.SeriesRenderer
        MindFusion.Charting.Renderer2D
            MindFusion.Charting.BubbleRenderer

 See Also