LegendPosition

LegendPosition enumeration

指定图表图例的可能位置。

public enum LegendPosition

价值观

姓名价值描述
None0图表不会显示图例。
Bottom1指定图例应绘制在图表底部。
Left2指定图例应绘制在图表的左侧。
Right3指定图例应绘制在图表右侧。
Top4指定图例应绘制在图表顶部。
TopRight5指定图例应绘制在图表的右上角。

例子

演示如何编辑图表图例的外观。

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

Shape shape = builder.InsertChart(ChartType.Line, 450, 300);
Chart chart = shape.Chart;

Assert.AreEqual(3, chart.Series.Count);
Assert.AreEqual("Series 1", chart.Series[0].Name);
Assert.AreEqual("Series 2", chart.Series[1].Name);
Assert.AreEqual("Series 3", chart.Series[2].Name);

// 将图表的图例移动到右上角。
ChartLegend legend = chart.Legend;
legend.Position = LegendPosition.TopRight;

// 通过允许其他图表元素(例如图表)与图例重叠,为它们提供更多空间。
legend.Overlay = true;

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

也可以看看