java.lang.Object
com.aspose.words.ChartSeriesType
public class ChartSeriesType
- extends java.lang.Object
Utility class containing constants.
Specifies a type of a chart series.
Example:
Shows how to remove specific chart serie.
Document doc = new Document(getMyDir() + "Reporting engine template - Chart series (Java).docx");
Chart chart = ((Shape)doc.getChild(NodeType.SHAPE, 0, true)).getChart();
// Remove all series of the Column type.
for (int i = chart.getSeries().getCount() - 1; i >= 0; i--)
{
if (chart.getSeries().get(i).getSeriesType() == ChartSeriesType.COLUMN)
chart.getSeries().removeAt(i);
}
chart.getSeries().add(
"Aspose Series",
new String[] { "Category 1", "Category 2", "Category 3", "Category 4" },
new double[] { 5.6, 7.1, 2.9, 8.9 });
doc.save(getArtifactsDir() + "Charts.RemoveSpecificChartSeries.docx");
|
Field Summary |
static final int | AREA = 0 | |
|
Represents an Area chart series.
|
static final int | AREA_STACKED = 1 | |
|
Represents a Stacked Area chart series.
|
static final int | AREA_PERCENT_STACKED = 2 | |
|
Represents a 100% Stacked Area chart series.
|
static final int | AREA_3_D = 3 | |
|
Represents a 3D Area chart series.
|
static final int | AREA_3_D_STACKED = 4 | |
|
Represents a 3D Stacked Area chart series.
|
static final int | AREA_3_D_PERCENT_STACKED = 5 | |
|
Represents a 3D 100% Stacked Area chart series.
|
static final int | BAR = 6 | |
|
Represents a Bar chart series.
|
static final int | BAR_STACKED = 7 | |
|
Represents a Stacked Bar chart series.
|
static final int | BAR_PERCENT_STACKED = 8 | |
|
Represents a 100% Stacked Bar chart series.
|
static final int | BAR_3_D = 9 | |
|
Represents a 3D Bar chart series.
|
static final int | BAR_3_D_STACKED = 10 | |
|
Represents a 3D Stacked Bar chart series.
|
static final int | BAR_3_D_PERCENT_STACKED = 11 | |
|
Represents a 3D 100% Stacked Bar chart series.
|
static final int | BUBBLE = 12 | |
|
Represents a Bubble chart series.
|
static final int | BUBBLE_3_D = 13 | |
|
Represents a 3D Bubble chart series.
|
static final int | COLUMN = 14 | |
|
Represents a Column chart series.
|
static final int | COLUMN_STACKED = 15 | |
|
Represents a Stacked Column chart series.
|
static final int | COLUMN_PERCENT_STACKED = 16 | |
|
Represents a 100% Stacked Column chart series.
|
static final int | COLUMN_3_D = 17 | |
|
Represents a 3D Column chart series.
|
static final int | COLUMN_3_D_STACKED = 18 | |
|
Represents a 3D Stacked Column chart series.
|
static final int | COLUMN_3_D_PERCENT_STACKED = 19 | |
|
Represents a 3D 100% Stacked Column chart series.
|
static final int | COLUMN_3_D_CLUSTERED = 20 | |
|
Represents a 3D Clustered Column chart series.
|
static final int | DOUGHNUT = 21 | |
|
Represents a Doughnut chart series.
|
static final int | LINE = 22 | |
|
Represents a Line chart series.
|
static final int | LINE_STACKED = 23 | |
|
Represents a Stacked Line chart series.
|
static final int | LINE_PERCENT_STACKED = 24 | |
|
Represents a 100% Stacked Line chart series.
|
static final int | LINE_3_D = 25 | |
|
Represents a 3D Line chart series.
|
static final int | PIE = 26 | |
|
Represents a Pie chart series.
|
static final int | PIE_3_D = 27 | |
|
Represents a 3D Pie chart series.
|
static final int | PIE_OF_BAR = 28 | |
|
Represents a Pie of Bar chart series.
|
static final int | PIE_OF_PIE = 29 | |
|
Represents a Pie of Pie chart series.
|
static final int | RADAR = 30 | |
|
Represents a Radar chart series.
|
static final int | SCATTER = 31 | |
|
Represents a Scatter chart series.
|
static final int | STOCK = 32 | |
|
Represents a Stock chart series.
|
static final int | SURFACE = 33 | |
|
Represents a Surface chart series.
|
static final int | SURFACE_3_D = 34 | |
|
Represents a 3D Surface chart series.
|
static final int | TREEMAP = 35 | |
|
Represents a Treemap chart series.
|
static final int | SUNBURST = 36 | |
|
Represents a Sunburst chart series.
|
static final int | HISTOGRAM = 37 | |
|
Represents a Histogram chart series.
|
static final int | PARETO = 38 | |
|
Represents a Pareto chart series.
|
static final int | PARETO_LINE = 39 | |
|
Represents a Pareto Line chart series.
|
static final int | BOX_AND_WHISKER = 40 | |
|
Represents a Box and Whisker chart series.
|
static final int | WATERFALL = 41 | |
|
Represents a Waterfall chart series.
|
static final int | FUNNEL = 42 | |
|
Represents a Funnel chart series.
|
static final int | REGION_MAP = 43 | |
|
Represents a Region Map chart series.
|
AREA = 0 | |
public static final int AREA |
-
Represents an Area chart series.
AREA_STACKED = 1 | |
public static final int AREA_STACKED |
-
Represents a Stacked Area chart series.
AREA_PERCENT_STACKED = 2 | |
public static final int AREA_PERCENT_STACKED |
-
Represents a 100% Stacked Area chart series.
AREA_3_D = 3 | |
public static final int AREA_3_D |
-
Represents a 3D Area chart series.
AREA_3_D_STACKED = 4 | |
public static final int AREA_3_D_STACKED |
-
Represents a 3D Stacked Area chart series.
AREA_3_D_PERCENT_STACKED = 5 | |
public static final int AREA_3_D_PERCENT_STACKED |
-
Represents a 3D 100% Stacked Area chart series.
BAR = 6 | |
public static final int BAR |
-
Represents a Bar chart series.
BAR_STACKED = 7 | |
public static final int BAR_STACKED |
-
Represents a Stacked Bar chart series.
BAR_PERCENT_STACKED = 8 | |
public static final int BAR_PERCENT_STACKED |
-
Represents a 100% Stacked Bar chart series.
BAR_3_D = 9 | |
public static final int BAR_3_D |
-
Represents a 3D Bar chart series.
BAR_3_D_STACKED = 10 | |
public static final int BAR_3_D_STACKED |
-
Represents a 3D Stacked Bar chart series.
BAR_3_D_PERCENT_STACKED = 11 | |
public static final int BAR_3_D_PERCENT_STACKED |
-
Represents a 3D 100% Stacked Bar chart series.
BUBBLE = 12 | |
public static final int BUBBLE |
-
Represents a Bubble chart series.
BUBBLE_3_D = 13 | |
public static final int BUBBLE_3_D |
-
Represents a 3D Bubble chart series.
COLUMN = 14 | |
public static final int COLUMN |
-
Represents a Column chart series.
COLUMN_STACKED = 15 | |
public static final int COLUMN_STACKED |
-
Represents a Stacked Column chart series.
COLUMN_PERCENT_STACKED = 16 | |
public static final int COLUMN_PERCENT_STACKED |
-
Represents a 100% Stacked Column chart series.
COLUMN_3_D = 17 | |
public static final int COLUMN_3_D |
-
Represents a 3D Column chart series.
COLUMN_3_D_STACKED = 18 | |
public static final int COLUMN_3_D_STACKED |
-
Represents a 3D Stacked Column chart series.
COLUMN_3_D_PERCENT_STACKED = 19 | |
public static final int COLUMN_3_D_PERCENT_STACKED |
-
Represents a 3D 100% Stacked Column chart series.
COLUMN_3_D_CLUSTERED = 20 | |
public static final int COLUMN_3_D_CLUSTERED |
-
Represents a 3D Clustered Column chart series.
DOUGHNUT = 21 | |
public static final int DOUGHNUT |
-
Represents a Doughnut chart series.
LINE = 22 | |
public static final int LINE |
-
Represents a Line chart series.
LINE_STACKED = 23 | |
public static final int LINE_STACKED |
-
Represents a Stacked Line chart series.
LINE_PERCENT_STACKED = 24 | |
public static final int LINE_PERCENT_STACKED |
-
Represents a 100% Stacked Line chart series.
LINE_3_D = 25 | |
public static final int LINE_3_D |
-
Represents a 3D Line chart series.
PIE = 26 | |
public static final int PIE |
-
Represents a Pie chart series.
PIE_3_D = 27 | |
public static final int PIE_3_D |
-
Represents a 3D Pie chart series.
PIE_OF_BAR = 28 | |
public static final int PIE_OF_BAR |
-
Represents a Pie of Bar chart series.
PIE_OF_PIE = 29 | |
public static final int PIE_OF_PIE |
-
Represents a Pie of Pie chart series.
RADAR = 30 | |
public static final int RADAR |
-
Represents a Radar chart series.
SCATTER = 31 | |
public static final int SCATTER |
-
Represents a Scatter chart series.
STOCK = 32 | |
public static final int STOCK |
-
Represents a Stock chart series.
SURFACE = 33 | |
public static final int SURFACE |
-
Represents a Surface chart series.
SURFACE_3_D = 34 | |
public static final int SURFACE_3_D |
-
Represents a 3D Surface chart series.
TREEMAP = 35 | |
public static final int TREEMAP |
-
Represents a Treemap chart series.
SUNBURST = 36 | |
public static final int SUNBURST |
-
Represents a Sunburst chart series.
HISTOGRAM = 37 | |
public static final int HISTOGRAM |
-
Represents a Histogram chart series.
PARETO = 38 | |
public static final int PARETO |
-
Represents a Pareto chart series.
PARETO_LINE = 39 | |
public static final int PARETO_LINE |
-
Represents a Pareto Line chart series.
BOX_AND_WHISKER = 40 | |
public static final int BOX_AND_WHISKER |
-
Represents a Box and Whisker chart series.
WATERFALL = 41 | |
public static final int WATERFALL |
-
Represents a Waterfall chart series.
FUNNEL = 42 | |
public static final int FUNNEL |
-
Represents a Funnel chart series.
REGION_MAP = 43 | |
public static final int REGION_MAP |
-
Represents a Region Map chart series.
See Also:
Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
Aspose.Words Support Forum - our preferred method of support.