NumberFormat
ChartAxis.NumberFormat property
返回一个ChartNumberFormat
允许定义轴数字格式的对象。
public ChartNumberFormat NumberFormat { get; }
例子
展示如何设置图表值的格式。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.InsertChart(ChartType.Column, 500, 300);
Chart chart = shape.Chart;
// 清除图表的演示数据系列以从干净的图表开始。
chart.Series.Clear();
// 将自定义系列添加到图表中,其中 X 轴为类别,
// 和 Y 轴各自较大的数值。
chart.Series.Add("Aspose Test Series",
new [] { "Word", "PDF", "Excel", "GoogleDocs", "Note" },
new double[] { 1900000, 850000, 2100000, 600000, 1500000 });
// 将 Y 轴刻度标签的数字格式设置为不使用逗号对数字进行分组。
chart.AxisY.NumberFormat.FormatCode = "#,##0";
// 该标志可以覆盖上面的值并从源单元格中绘制数字格式。
Assert.False(chart.AxisY.NumberFormat.IsLinkedToSource);
doc.Save(ArtifactsDir + "Charts.SetNumberFormatToChartAxis.docx");
也可以看看
- class ChartNumberFormat
- class ChartAxis
- 命名空间 Aspose.Words.Drawing.Charts
- 部件 Aspose.Words