Label
IChartDataPointLevel.Label property
Representa la etiqueta de datos del nivel de punto de datos. Se aplica a los tipos de serie Treemap y Sunburst. Solo lecturaIDataLabel
.
public IDataLabel Label { get; }
Ejemplos
using (Presentation pres = new Presentation())
IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.Sunburst, 50, 50, 500, 400);
IChartSeries series = chart.ChartData.Series[0];
IChartDataPointLevel dataPointLevel = series.DataPoints[0].DataPointLevels[1];
dataPointLevel.Label.DataLabelFormat.ShowCategoryName = false;
dataPointLevel.Label.DataLabelFormat.ShowValue = true;
dataPointLevel.Label.DataLabelFormat.ShowSeriesName = true;
dataPointLevel = series.DataPoints[12].DataPointLevels[1];
dataPointLevel.Label.TextFormat.PortionFormat.FillFormat.FillType = FillType.Solid;
dataPointLevel.Label.TextFormat.PortionFormat.FillFormat.SolidFillColor.Color = Color.Red;
Ver también
- interface IDataLabel
- interface IChartDataPointLevel
- espacio de nombres Aspose.Slides.Charts
- asamblea Aspose.Slides