java.lang.Object
com.aspose.words.AxisBuiltInUnit
public class AxisBuiltInUnit
- extends java.lang.Object
Utility class containing constants.
Specifies the display units for an axis.
Example:
Shows how to manipulate the tick marks and displayed values of a chart axis.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.insertChart(ChartType.SCATTER, 450.0, 250.0);
Chart chart = shape.getChart();
Assert.assertEquals(1, chart.getSeries().getCount());
Assert.assertEquals("Y-Values", chart.getSeries().get(0).getName());
// Set the minor tick marks of the Y-axis to point away from the plot area,
// and the major tick marks to cross the axis.
ChartAxis axis = chart.getAxisY();
axis.setMajorTickMark(AxisTickMark.CROSS);
axis.setMinorTickMark(AxisTickMark.OUTSIDE);
// Set they Y-axis to show a major tick every 10 units, and a minor tick every 1 unit.
axis.setMajorUnit(10.0);
axis.setMinorUnit(1.0);
// Set the Y-axis bounds to -10 and 20.
// This Y-axis will now display 4 major tick marks and 27 minor tick marks.
axis.getScaling().setMinimum(new AxisBound(-10));
axis.getScaling().setMaximum(new AxisBound(20.0));
// For the X-axis, set the major tick marks at every 10 units,
// every minor tick mark at 2.5 units, and configure them to both be inside the graph plot area.
axis = chart.getAxisX();
axis.setMajorTickMark(AxisTickMark.INSIDE);
axis.setMinorTickMark(AxisTickMark.INSIDE);
axis.setMajorUnit(10.0);
axis.setMinorUnit(2.5);
// Set the X-axis bounds so that the X-axis spans 5 major tick marks and 12 minor tick marks.
axis.getScaling().setMinimum(new AxisBound(-10));
axis.getScaling().setMaximum(new AxisBound(30.0));
axis.setTickLabelAlignment(ParagraphAlignment.RIGHT);
Assert.assertEquals(1, axis.getTickLabelSpacing());
// Set the tick labels to display their value in millions.
axis.getDisplayUnit().setUnit(AxisBuiltInUnit.MILLIONS);
// We can set a more specific value by which tick labels will display their values.
// This statement is equivalent to the one above.
axis.getDisplayUnit().setCustomUnit(1000000.0);
doc.save(getArtifactsDir() + "Charts.AxisDisplayUnit.docx");
Field Summary |
static final int | NONE = 0 | |
Specifies the values on the chart shall displayed as is.
|
static final int | CUSTOM = 1 | |
Specifies the values on the chart shall be divided by a user-defined divisor. This value is not supported
by the new chart types of MS Office 2016.
|
static final int | BILLIONS = 2 | |
Specifies the values on the chart shall be divided by 1,000,000,000.
|
static final int | HUNDRED_MILLIONS = 3 | |
Specifies the values on the chart shall be divided by 100,000,000.
|
static final int | HUNDREDS = 4 | |
Specifies the values on the chart shall be divided by 100.
|
static final int | HUNDRED_THOUSANDS = 5 | |
Specifies the values on the chart shall be divided by 100,000.
|
static final int | MILLIONS = 6 | |
Specifies the values on the chart shall be divided by 1,000,000.
|
static final int | TEN_MILLIONS = 7 | |
Specifies the values on the chart shall be divided by 10,000,000.
|
static final int | TEN_THOUSANDS = 8 | |
Specifies the values on the chart shall be divided by 10,000.
|
static final int | THOUSANDS = 9 | |
Specifies the values on the chart shall be divided by 1,000.
|
static final int | TRILLIONS = 10 | |
Specifies the values on the chart shall be divided by 1,000,000,000,0000.
|
static final int | PERCENTAGE = 11 | |
Specifies the values on the chart shall be divided by 0.01. This value is supported only by the new chart
types of MS Office 2016.
|
NONE = 0 | |
public static final int NONE |
-
Specifies the values on the chart shall displayed as is.
CUSTOM = 1 | |
public static final int CUSTOM |
-
Specifies the values on the chart shall be divided by a user-defined divisor. This value is not supported
by the new chart types of MS Office 2016.
BILLIONS = 2 | |
public static final int BILLIONS |
-
Specifies the values on the chart shall be divided by 1,000,000,000.
HUNDRED_MILLIONS = 3 | |
public static final int HUNDRED_MILLIONS |
-
Specifies the values on the chart shall be divided by 100,000,000.
HUNDREDS = 4 | |
public static final int HUNDREDS |
-
Specifies the values on the chart shall be divided by 100.
HUNDRED_THOUSANDS = 5 | |
public static final int HUNDRED_THOUSANDS |
-
Specifies the values on the chart shall be divided by 100,000.
MILLIONS = 6 | |
public static final int MILLIONS |
-
Specifies the values on the chart shall be divided by 1,000,000.
TEN_MILLIONS = 7 | |
public static final int TEN_MILLIONS |
-
Specifies the values on the chart shall be divided by 10,000,000.
TEN_THOUSANDS = 8 | |
public static final int TEN_THOUSANDS |
-
Specifies the values on the chart shall be divided by 10,000.
THOUSANDS = 9 | |
public static final int THOUSANDS |
-
Specifies the values on the chart shall be divided by 1,000.
TRILLIONS = 10 | |
public static final int TRILLIONS |
-
Specifies the values on the chart shall be divided by 1,000,000,000,0000.
PERCENTAGE = 11 | |
public static final int PERCENTAGE |
-
Specifies the values on the chart shall be divided by 0.01. This value is supported only by the new chart
types of MS Office 2016.
See Also:
Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
Aspose.Words Support Forum - our preferred method of support.