com.aspose.words
Class ChartSeriesType

java.lang.Object
    extended by 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 intAREA = 0
           Represents an Area chart series.
static final intAREA_STACKED = 1
           Represents a Stacked Area chart series.
static final intAREA_PERCENT_STACKED = 2
           Represents a 100% Stacked Area chart series.
static final intAREA_3_D = 3
           Represents a 3D Area chart series.
static final intAREA_3_D_STACKED = 4
           Represents a 3D Stacked Area chart series.
static final intAREA_3_D_PERCENT_STACKED = 5
           Represents a 3D 100% Stacked Area chart series.
static final intBAR = 6
           Represents a Bar chart series.
static final intBAR_STACKED = 7
           Represents a Stacked Bar chart series.
static final intBAR_PERCENT_STACKED = 8
           Represents a 100% Stacked Bar chart series.
static final intBAR_3_D = 9
           Represents a 3D Bar chart series.
static final intBAR_3_D_STACKED = 10
           Represents a 3D Stacked Bar chart series.
static final intBAR_3_D_PERCENT_STACKED = 11
           Represents a 3D 100% Stacked Bar chart series.
static final intBUBBLE = 12
           Represents a Bubble chart series.
static final intBUBBLE_3_D = 13
           Represents a 3D Bubble chart series.
static final intCOLUMN = 14
           Represents a Column chart series.
static final intCOLUMN_STACKED = 15
           Represents a Stacked Column chart series.
static final intCOLUMN_PERCENT_STACKED = 16
           Represents a 100% Stacked Column chart series.
static final intCOLUMN_3_D = 17
           Represents a 3D Column chart series.
static final intCOLUMN_3_D_STACKED = 18
           Represents a 3D Stacked Column chart series.
static final intCOLUMN_3_D_PERCENT_STACKED = 19
           Represents a 3D 100% Stacked Column chart series.
static final intCOLUMN_3_D_CLUSTERED = 20
           Represents a 3D Clustered Column chart series.
static final intDOUGHNUT = 21
           Represents a Doughnut chart series.
static final intLINE = 22
           Represents a Line chart series.
static final intLINE_STACKED = 23
           Represents a Stacked Line chart series.
static final intLINE_PERCENT_STACKED = 24
           Represents a 100% Stacked Line chart series.
static final intLINE_3_D = 25
           Represents a 3D Line chart series.
static final intPIE = 26
           Represents a Pie chart series.
static final intPIE_3_D = 27
           Represents a 3D Pie chart series.
static final intPIE_OF_BAR = 28
           Represents a Pie of Bar chart series.
static final intPIE_OF_PIE = 29
           Represents a Pie of Pie chart series.
static final intRADAR = 30
           Represents a Radar chart series.
static final intSCATTER = 31
           Represents a Scatter chart series.
static final intSTOCK = 32
           Represents a Stock chart series.
static final intSURFACE = 33
           Represents a Surface chart series.
static final intSURFACE_3_D = 34
           Represents a 3D Surface chart series.
static final intTREEMAP = 35
           Represents a Treemap chart series.
static final intSUNBURST = 36
           Represents a Sunburst chart series.
static final intHISTOGRAM = 37
           Represents a Histogram chart series.
static final intPARETO = 38
           Represents a Pareto chart series.
static final intPARETO_LINE = 39
           Represents a Pareto Line chart series.
static final intBOX_AND_WHISKER = 40
           Represents a Box and Whisker chart series.
static final intWATERFALL = 41
           Represents a Waterfall chart series.
static final intFUNNEL = 42
           Represents a Funnel chart series.
static final intREGION_MAP = 43
           Represents a Region Map chart series.
 

Field Detail

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.