GrapeCity.Xaml.SpreadSheet.Data Namespace > DataLabelSettings Class : ShowBubbleSize Property |
'Declaration Public Property ShowBubbleSize As Boolean
'Usage Dim instance As DataLabelSettings Dim value As Boolean instance.ShowBubbleSize = value value = instance.ShowBubbleSize
public bool ShowBubbleSize {get; set;}
true
to show bubble size; otherwise, false
.GrapeCity.Xaml.SpreadSheet.Data.SpreadDataSeries aseries = new GrapeCity.Xaml.SpreadSheet.Data.SpreadDataSeries(); aseries.Name = "1234"; aseries.Values.Add(2); aseries.Values.Add(4); aseries.Values.Add(3); aseries.Values.Add(5); aseries.Fill = new SolidColorBrush(Windows.UI.Colors.Red); aseries.ChartType = GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.ColumnStacked; aseries.DataLabelSettings = new GrapeCity.Xaml.SpreadSheet.Data.DataLabelSettings() { ShowValue = true, ShowBubbleSize = true }; aseries.DataLabelStyle.Fill = new SolidColorBrush(Windows.UI.Colors.Green); GrapeCity.Xaml.SpreadSheet.Data.SpreadChart chart = new GrapeCity.Xaml.SpreadSheet.Data.SpreadChart(); chart.DataSeries.Add(aseries); chart.Name = "name1"; this.gcSpreadSheet1.ActiveSheet.Charts.Add(chart);
Dim aseries As New GrapeCity.Xaml.SpreadSheet.Data.SpreadDataSeries() aseries.Name = "1234" aseries.Values.Add(2) aseries.Values.Add(4) aseries.Values.Add(3) aseries.Values.Add(5) aseries.Fill = New SolidColorBrush(Windows.UI.Colors.Red) aseries.ChartType = GrapeCity.Xaml.SpreadSheet.Data.SpreadChartType.ColumnStacked aseries.DataLabelSettings = New GrapeCity.Xaml.SpreadSheet.Data.DataLabelSettings() With {.ShowValue = True, .ShowBubbleSize = True} aseries.DataLabelStyle.Fill = New SolidColorBrush(Windows.UI.Colors.Green) Dim chart As New GrapeCity.Xaml.SpreadSheet.Data.SpreadChart() chart.DataSeries.Add(aseries) chart.Name = "name1" GcSpreadSheet1.ActiveSheet.Charts.Add(chart)
Target Platforms: Windows Server 2012, Windows RT