ShowPercentage
ChartDataLabelCollection.ShowPercentage property
允许指定是否为整个系列的数据标签显示百分比值。 默认值为错误的
。仅适用于饼图。
public bool ShowPercentage { get; set; }
评论
可以使用 the 覆盖单个数据标签为此属性定义的值ShowPercentage
属性.
例子
展示如何使用饼图的数据标签。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Chart chart = builder.InsertChart(ChartType.Pie, 500, 300).Chart;
// 清除图表的演示数据系列以从干净的图表开始。
chart.Series.Clear();
// 插入自定义图表系列,其中包含每个部门的类别名称及其频率表。
ChartSeries series = chart.Series.Add("Aspose Test Series",
new[] { "Word", "PDF", "Excel" },
new[] { 2.7, 3.2, 0.8 });
// 启用数据标签,显示每个扇区的百分比和频率,并修改其外观。
series.HasDataLabels = true;
ChartDataLabelCollection dataLabels = series.DataLabels;
dataLabels.ShowLeaderLines = true;
dataLabels.ShowLegendKey = true;
dataLabels.ShowPercentage = true;
dataLabels.ShowValue = true;
dataLabels.Separator = "; ";
doc.Save(ArtifactsDir + "Charts.DataLabelsPieChart.docx");