Format
Contenu
[
Cacher
]ChartDataPoint.Format property
Donne accès au formatage de remplissage et de ligne de ce point de données.
public ChartFormat Format { get; }
Exemples
Montre comment définir une mise en forme individuelle pour les catégories d’un histogramme.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.InsertChart(ChartType.Column, 432, 252);
Chart chart = shape.Chart;
// Supprime la série générée par défaut.
chart.Series.Clear();
// Ajout d'une nouvelle série.
ChartSeries series = chart.Series.Add("Series 1",
new[] { "Category 1", "Category 2", "Category 3", "Category 4" },
new double[] { 1, 2, 3, 4 });
// Définit le formatage des colonnes.
ChartDataPointCollection dataPoints = series.DataPoints;
dataPoints[0].Format.Fill.PresetTextured(PresetTexture.Denim);
dataPoints[1].Format.Fill.ForeColor = Color.Red;
dataPoints[2].Format.Fill.ForeColor = Color.Yellow;
dataPoints[3].Format.Fill.ForeColor = Color.Blue;
doc.Save(ArtifactsDir + "Charts.DataPointsFormatting.docx");
Voir également
- class ChartFormat
- class ChartDataPoint
- espace de noms Aspose.Words.Drawing.Charts
- Assemblée Aspose.Words