Version

BubbleChart Property

Returns an Appearance object that you can use to access all the formatting properties of a Bubble Chart.
Syntax
'Declaration
 
Public Property BubbleChart As BubbleChartAppearance
public BubbleChartAppearance BubbleChart {get; set;}
Example
'set the shape of the bubbles
UltraChart1.BubbleChart.BubbleShape = Infragistics.UltraChart.Shared.Styles.BubbleShape.Custom
'see the chartText object
'Ultrachart1.BubbleChart.ChartText
'set the column to base the color hues on
UltraChart1.BubbleChart.ColorCueColumn = 2
'set the columns for the chart to use for the x point, y point and the z radius
UltraChart1.BubbleChart.ColumnX = 0
UltraChart1.BubbleChart.ColumnY = 1
UltraChart1.BubbleChart.ColumnZ = 2
'set how to handle null plotting
UltraChart1.BubbleChart.NullHandling = Infragistics.UltraChart.Shared.Styles.NullHandling.DontPlot
// set the shape of the bubbles
      UltraChart1.BubbleChart.BubbleShape = Infragistics.UltraChart.Shared.Styles.BubbleShape.Custom;
      // see the chartText object
      // ultrachart1.bubblechart.charttext
      // set the column to base the color hues on
      UltraChart1.BubbleChart.ColorCueColumn = 2;
      // set the columns for the chart to use for the x point, y point and the z radius
      UltraChart1.BubbleChart.ColumnX = 0;
      UltraChart1.BubbleChart.ColumnY = 1;
      UltraChart1.BubbleChart.ColumnZ = 2;
      // set how to handle null plotting
      UltraChart1.BubbleChart.NullHandling = Infragistics.UltraChart.Shared.Styles.NullHandling.DontPlot;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also