ChartAxisCollection

ChartAxisCollection class

表示图表轴的集合。

public class ChartAxisCollection : IEnumerable<ChartAxis>

特性

姓名描述
Count { get; }获取此集合中的轴数。
Item { get; }获取指定索引处的轴。

方法

姓名描述
GetEnumerator()返回一个枚举器对象。

例子

展示如何使用轴集合。

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

Shape shape = builder.InsertChart(ChartType.Column, 500, 300);
Chart chart = shape.Chart;            

// 隐藏主要和次要 Y 轴上的主要网格线。
foreach (ChartAxis axis in chart.Axes)
{
    if (axis.Type == ChartAxisType.Value)
        axis.HasMajorGridlines = false;
}

doc.Save(ArtifactsDir + "Charts.AxisCollection.docx");

也可以看看