Font
ChartDataLabel.Font property
提供对此数据标签的字体格式的访问。
public Font Font { get; }
例子
展示如何将 3D 效果与气泡图结合使用。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.InsertChart(ChartType.Bubble3D, 500, 350);
Chart chart = shape.Chart;
Assert.AreEqual(1, chart.Series.Count);
Assert.AreEqual("Y-Values", chart.Series[0].Name);
Assert.True(chart.Series[0].Bubble3D);
// 将数据标签应用于显示其直径的每个气泡。
for (int i = 0; i < 3; i++)
{
chart.Series[0].HasDataLabels = true;
chart.Series[0].DataLabels[i].ShowBubbleSize = true;
chart.Series[0].DataLabels[i].Font.Size = 12;
}
doc.Save(ArtifactsDir + "Charts.Bubble3D.docx");
也可以看看
- class Font
- class ChartDataLabel
- 命名空间 Aspose.Words.Drawing.Charts
- 部件 Aspose.Words