Format
IChartDataPointLevel.Format property
Représente les propriétés de formatage du niveau du point de données. Lecture/écritureIFormat
.
public IFormat Format { get; }
Exemples
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;
}
Voir également
- interface IFormat
- interface IChartDataPointLevel
- espace de noms Aspose.Slides.Charts
- Assemblée Aspose.Slides