Format
IChartDataPointLevel.Format property
Representa las propiedades de formato del nivel de punto de datos. Lectura/escrituraIFormat
.
public IFormat Format { get; }
Ejemplos
using (Presentation pres = new Presentation())
{
IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.Treemap, 50, 50, 500, 400);
IChartSeries series = chart.ChartData.Series[0];
IChartDataPointLevel dataPointLevel = series.DataPoints[7].DataPointLevels[2];
dataPointLevel.Format.Fill.FillType = FillType.Solid;
dataPointLevel.Format.Fill.SolidFillColor.Color = Color.Red;
}
Ver también
- interface IFormat
- interface IChartDataPointLevel
- espacio de nombres Aspose.Slides.Charts
- asamblea Aspose.Slides