SetShowPointDataLabel
Spicifies a show options for data labels
Parameters:
Name |
Type |
Description |
nSeriesIndex |
number
|
|
nPointIndex |
number
|
|
bShowSerName |
boolean
|
|
bShowCatName |
boolean
|
|
bShowVal |
boolean
|
|
bShowPercent |
boolean
|
|
Example
Copy code
builder.CreateFile("docx");
oDocument = Api.GetDocument();
oParagraph = oDocument.GetElement(0);
oDrawing = Api.CreateChart("bar3D", [
[200, 240, 280],
[250, 260, 280]
], ["Projected Revenue", "Estimated Costs"], [2014, 2015, 2016], 4051300, 2347595, 24);
oDrawing.SetVerAxisTitle("USD In Hundred Thousands", 10);
oDrawing.SetHorAxisTitle("Year", 11);
oDrawing.SetShowPointDataLabel(1, 0, false, false, true, false);
oDrawing.SetTitle("Financial Overview", 13);
oParagraph.AddDrawing(oDrawing);
builder.SaveFile("docx", "SetShowPointDataLabel.docx");
builder.CloseFile();
Resulting document