java.lang.Objectcom.aspose.words.ChartTitle
public class ChartTitle
Example:
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Use a document builder to insert a bar chart
Shape chartShape = builder.insertChart(ChartType.BAR, 400.0, 300.0);
// Get the chart object from the containing shape
Chart chart = chartShape.getChart();
// Set the title text, which appears at the top center of the chart and modify its appearance
ChartTitle title = chart.getTitle();
title.setText("MyChart");
title.setOverlay(true);
title.setShow(true);
doc.save(getArtifactsDir() + "Charts.ChartTitle.docx");
Property Getters/Setters Summary | ||
---|---|---|
boolean | getOverlay() | |
void | setOverlay(boolean value) | |
Determines whether other chart elements shall be allowed to overlap title. By default overlay is false. | ||
boolean | getShow() | |
void | setShow(boolean value) | |
Determines whether the title shall be shown for this chart. Default value is true. | ||
java.lang.String | getText() | |
void | setText(java.lang.String value) | |
Gets or sets the text of the chart title. If null or empty value is specified, auto generated title will be shown. |
Property Getters/Setters Detail |
---|
getOverlay/setOverlay | |
public boolean getOverlay() / public void setOverlay(boolean value) |
Example:
Shows how to insert a chart and change its title.Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Use a document builder to insert a bar chart Shape chartShape = builder.insertChart(ChartType.BAR, 400.0, 300.0); // Get the chart object from the containing shape Chart chart = chartShape.getChart(); // Set the title text, which appears at the top center of the chart and modify its appearance ChartTitle title = chart.getTitle(); title.setText("MyChart"); title.setOverlay(true); title.setShow(true); doc.save(getArtifactsDir() + "Charts.ChartTitle.docx");
getShow/setShow | |
public boolean getShow() / public void setShow(boolean value) |
Example:
Shows how to insert a chart and change its title.Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Use a document builder to insert a bar chart Shape chartShape = builder.insertChart(ChartType.BAR, 400.0, 300.0); // Get the chart object from the containing shape Chart chart = chartShape.getChart(); // Set the title text, which appears at the top center of the chart and modify its appearance ChartTitle title = chart.getTitle(); title.setText("MyChart"); title.setOverlay(true); title.setShow(true); doc.save(getArtifactsDir() + "Charts.ChartTitle.docx");
getText/setText | |
public java.lang.String getText() / public void setText(java.lang.String value) |
Example:
Shows how to insert a chart and change its title.Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); // Use a document builder to insert a bar chart Shape chartShape = builder.insertChart(ChartType.BAR, 400.0, 300.0); // Get the chart object from the containing shape Chart chart = chartShape.getChart(); // Set the title text, which appears at the top center of the chart and modify its appearance ChartTitle title = chart.getTitle(); title.setText("MyChart"); title.setOverlay(true); title.setShow(true); doc.save(getArtifactsDir() + "Charts.ChartTitle.docx");