ChartType

ChartType enumeration

指定图表类型。

public enum ChartType

价值观

姓名价值描述
Area0面积图。
AreaStacked1堆积面积图。
AreaPercentStacked2100% 堆积面积图。
Area3D33D 面积图。
Area3DStacked43D 堆积面积图。
Area3DPercentStacked53D 100% 堆积面积图。
Bar6条形图.
BarStacked7堆积条形图。
BarPercentStacked8100% 堆叠条形图。
Bar3D93D 条形图。
Bar3DStacked103D 堆叠条形图。
Bar3DPercentStacked113D 100% 堆叠条形图。
Bubble12气泡图.
Bubble3D133D 气泡图.
Column14柱形图.
ColumnStacked15堆积柱形图。
ColumnPercentStacked16100% 堆积柱形图。
Column3D173D 柱形图。
Column3DStacked183D 堆积柱形图。
Column3DPercentStacked193D 100% 堆积柱形图。
Column3DClustered203D 簇状柱形图。
Doughnut21圆环图.
Line22折线图.
LineStacked23堆积折线图。
LinePercentStacked24100% 堆积折线图。
Line3D253D 折线图。
Pie26饼图.
Pie3D273D 饼图.
PieOfBar28条形图饼图.
PieOfPie29饼图的饼图。
Radar30雷达图.
Scatter31散点图.
Stock32股票图表.
Surface33表面图.
Surface3D343D 曲面图。

例子

展示如何为图形类型创建适当类型的图表系列。

public void ChartSeriesCollection()
{
    Document doc = new Document();
    DocumentBuilder builder = new DocumentBuilder(doc);

    // 有多种方法可以填充图表的系列集合。
    // 不同的系列模式适用于不同的图表类型。
    // 1 - 柱形图,其中的柱按类别沿 X 轴分组和排列:
    Chart chart = AppendChart(builder, ChartType.Column, 500, 300);

    string[] categories = { "Category 1", "Category 2", "Category 3" };

    // 插入两个系列的十进制值,其中包含每个相应类别的值。
    // 此柱形图将包含三组,每组有两列。
    chart.Series.Add("Series 1", categories, new [] { 76.6, 82.1, 91.6 });
    chart.Series.Add("Series 2", categories, new [] { 64.2, 79.5, 94.0 });

    // 类别沿X轴分布,值沿Y轴分布。
    Assert.AreEqual(ChartAxisType.Category, chart.AxisX.Type);
    Assert.AreEqual(ChartAxisType.Value, chart.AxisY.Type);

    // 2 - 日期沿 X 轴分布的面积图:
    chart = AppendChart(builder, ChartType.Area, 500, 300);

    DateTime[] dates = { new DateTime(2014, 3, 31),
        new DateTime(2017, 1, 23),
        new DateTime(2017, 6, 18),
        new DateTime(2019, 11, 22),
        new DateTime(2020, 9, 7)
    };

    // 为每个相应日期插入一个带有十进制值的系列。
    // 日期将沿线性 X 轴分布,
    // 添加到该系列的值将创建数据点。
    chart.Series.Add("Series 1", dates, new [] { 15.8, 21.5, 22.9, 28.7, 33.1 });

    Assert.AreEqual(ChartAxisType.Category, chart.AxisX.Type);
    Assert.AreEqual(ChartAxisType.Value, chart.AxisY.Type);

    // 3 - 2D 散点图:
    chart = AppendChart(builder, ChartType.Scatter, 500, 300);

    // 每个系列都需要两个长度相等的十进制数组。
    // 第一个数组包含 X 值,第二个数组包含相应的 Y 值
    // 图表上的数据点。
    chart.Series.Add("Series 1", 
        new[] { 3.1, 3.5, 6.3, 4.1, 2.2, 8.3, 1.2, 3.6 }, 
        new[] { 3.1, 6.3, 4.6, 0.9, 8.5, 4.2, 2.3, 9.9 });
    chart.Series.Add("Series 2", 
        new[] { 2.6, 7.3, 4.5, 6.6, 2.1, 9.3, 0.7, 3.3 }, 
        new[] { 7.1, 6.6, 3.5, 7.8, 7.7, 9.5, 1.3, 4.6 });

    Assert.AreEqual(ChartAxisType.Value, chart.AxisX.Type);
    Assert.AreEqual(ChartAxisType.Value, chart.AxisY.Type);

    // 4 - 气泡图:
    chart = AppendChart(builder, ChartType.Bubble, 500, 300);

    // 每个系列需要三个长度相等的十进制数组。
    // 第一个数组包含 X 值,第二个数组包含相应的 Y 值,
    // 第三个包含图表每个数据点的直径。
    chart.Series.Add("Series 1", 
        new [] { 1.1, 5.0, 9.8 }, 
        new [] { 1.2, 4.9, 9.9 }, 
        new [] { 2.0, 4.0, 8.0 });

    doc.Save(ArtifactsDir + "Charts.ChartSeriesCollection.docx");
}

/// <summary>
/// 使用指定图表类型、宽度和高度的文档生成器插入图表,并删除其演示数据。
/// </summary>
private static Chart AppendChart(DocumentBuilder builder, ChartType chartType, double width, double height)
{
    Shape chartShape = builder.InsertChart(chartType, width, height);
    Chart chart = chartShape.Chart;
    chart.Series.Clear();
    return chart;
}

也可以看看