Spread WPF 15
GrapeCity.Windows.SpreadSheet.Data Namespace / SpreadDataSeries Class / DataLabelStyle Property
Example


In This Topic
    DataLabelStyle Property
    In This Topic
    Gets the style of the data label.
    Syntax
    'Declaration
     
    Public ReadOnly Property DataLabelStyle As ChartLabelStyleInfo
    'Usage
     
    Dim instance As SpreadDataSeries
    Dim value As ChartLabelStyleInfo
     
    value = instance.DataLabelStyle
    public ChartLabelStyleInfo DataLabelStyle {get;}

    Property Value

    The style of the data label.
    Example
    This example sets the DataLabelStyle property.
    GrapeCity.Windows.SpreadSheet.Data.SpreadDataSeries aseries = new GrapeCity.Windows.SpreadSheet.Data.SpreadDataSeries();
    aseries.Name = "1234";
    aseries.Values.Add(2);
    aseries.Values.Add(4);
    aseries.Values.Add(3);
    aseries.Values.Add(5);
    aseries.Fill = Brushes.Red;
    aseries.ChartType = GrapeCity.Windows.SpreadSheet.Data.SpreadChartType.ColumnStacked;
    aseries.DataLabelSettings = new GrapeCity.Windows.SpreadSheet.Data.DataLabelSettings() { ShowValue = true, ShowBubbleSize = true };
    aseries.DataLabelStyle.Fill = Brushes.Green;
    GrapeCity.Windows.SpreadSheet.Data.SpreadChart chart = new GrapeCity.Windows.SpreadSheet.Data.SpreadChart();
    chart.DataSeries.Add(aseries);
    chart.Name = "name1";
    this.gcSpreadSheet1.ActiveSheet.Charts.Add(chart);
    Dim aseries As New GrapeCity.Windows.SpreadSheet.Data.SpreadDataSeries()
    aseries.Name = "1234"
    aseries.Values.Add(2)
    aseries.Values.Add(4)
    aseries.Values.Add(3)
    aseries.Values.Add(5)
    aseries.Fill = Brushes.Red
    aseries.ChartType = GrapeCity.Windows.SpreadSheet.Data.SpreadChartType.ColumnStacked
    aseries.DataLabelSettings = New GrapeCity.Windows.SpreadSheet.Data.DataLabelSettings() With {.ShowPointValue = True, .ShowBubbleSize = True, .ShowXValue = True}
    aseries.DataLabelStyle.Fill = Brushes.Green
    Dim chart As New GrapeCity.Windows.SpreadSheet.Data.SpreadChart()
    chart.DataSeries.Add(aseries)
    chart.Name = "name1"
    GcSpreadSheet1.ActiveSheet.Charts.Add(chart)
    See Also