Axes
Chart.Axes property
Bu grafiğin tüm eksenlerinin bir koleksiyonunu alır.
public ChartAxisCollection Axes { get; }
Örnekler
Eksen koleksiyonuyla nasıl çalışılacağını gösterir.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.InsertChart(ChartType.Column, 500, 300);
Chart chart = shape.Chart;
// Birincil ve ikincil Y eksenlerindeki ana ızgara çizgilerini gizleyin.
foreach (ChartAxis axis in chart.Axes)
{
if (axis.Type == ChartAxisType.Value)
axis.HasMajorGridlines = false;
}
doc.Save(ArtifactsDir + "Charts.AxisCollection.docx");
Ayrıca bakınız
- class ChartAxisCollection
- class Chart
- ad alanı Aspose.Words.Drawing.Charts
- toplantı Aspose.Words