Series
Inheritance: java.lang.Object
public class Series
Encapsulates the object that represents a single data series in a chart.
Example
//Instantiating a Workbook object
Workbook workbook = new Workbook();
//Adding a new worksheet to the Excel object
int sheetIndex = workbook.getWorksheets().add();
//Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.getWorksheets().get(sheetIndex);
//Adding a sample value to "A1" cell
worksheet.getCells().get("A1").putValue(50);
//Adding a sample value to "A2" cell
worksheet.getCells().get("A2").putValue(100);
//Adding a sample value to "A3" cell
worksheet.getCells().get("A3").putValue(150);
//Adding a sample value to "A4" cell
worksheet.getCells().get("A4").putValue(200);
//Adding a sample value to "B1" cell
worksheet.getCells().get("B1").putValue(60);
//Adding a sample value to "B2" cell
worksheet.getCells().get("B2").putValue(32);
//Adding a sample value to "B3" cell
worksheet.getCells().get("B3").putValue(50);
//Adding a sample value to "B4" cell
worksheet.getCells().get("B4").putValue(40);
//Adding a sample value to "C1" cell as category data
worksheet.getCells().get("C1").putValue("Q1");
//Adding a sample value to "C2" cell as category data
worksheet.getCells().get("C2").putValue("Q2");
//Adding a sample value to "C3" cell as category data
worksheet.getCells().get("C3").putValue("Y1");
//Adding a sample value to "C4" cell as category data
worksheet.getCells().get("C4").putValue("Y2");
//Adding a chart to the worksheet
int chartIndex = worksheet.getCharts().add(ChartType.COLUMN, 5, 0, 15, 5);
//Accessing the instance of the newly added chart
Chart chart = worksheet.getCharts().get(chartIndex);
//Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B4"
int seriesIndex = chart.getNSeries().add("A1:B4", true);
//Setting the data source for the category data of NSeries
chart.getNSeries().setCategoryData("C1:C4");
Series series = chart.getNSeries().get(seriesIndex);
//Setting the values of the series.
series.setValues("=B1:B4");
//Changing the chart type of the series.
series.setType(ChartType.LINE);
//Setting marker properties.
series.getMarker().setMarkerStyle(ChartMarkerType.CIRCLE);
series.getMarker().setForegroundColorSetType(FormattingType.AUTOMATIC);
series.getMarker().setForegroundColor(com.aspose.cells.Color.getBlack());
series.getMarker().setBackgroundColorSetType(FormattingType.AUTOMATIC);
//do your business
//Saving the Excel file
workbook.save("book1.xls");
Methods
Method | Description |
---|---|
equals(Object arg0) | |
getArea() | Represents the background area of Series object. |
getBar3DShapeType() | Gets the 3D shape type used with the 3-D bar or column chart. |
getBorder() | Represents border of Series object. |
getBubbleScale() | Gets the scale factor for bubbles in the specified chart group. |
getBubbleSizeRepresents() | Gets what the bubble size represents on a bubble chart. |
getBubbleSizes() | Gets the bubble sizes values of the chart series. |
getClass() | |
getCountOfDataValues() | Gets the number of the data values. |
getDataLabels() | Represents the DataLabels object for the specified ASeries. |
getDisplayName() | Gets the series’s name that displays on the chart graph. |
getDoughnutHoleSize() | Returns or sets the size of the hole in a doughnut chart group. |
getDownBars() | Returns a DropBars object that represents the down bars on a line chart. |
getDropLines() | Returns a Line object that represents the drop lines for a series on the line chart or area chart. |
getExplosion() | The distance of an open pie slice from the center of the pie chart is expressed as a percentage of the pie diameter. |
getFirstSliceAngle() | Gets the angle of the first pie-chart or doughnut-chart slice, in degrees (clockwise from vertical). |
getGapWidth() | Returns or sets the space between bar or column clusters, as a percentage of the bar or column width. |
getHas3DEffect() | True if the series has a three-dimensional appearance. |
getHiLoLines() | Returns a HiLoLines object that represents the high-low lines for a series on a line chart. |
getLayoutProperties() | Represents the properties of layout. |
getLeaderLines() | Represents leader lines on a chart. |
getLegendEntry() | Gets the legend entry according to this series. |
getMarker() | Gets the getMarker(). |
getName() | Gets the name of the data series. |
getOverlap() | Specifies how bars and columns are positioned. |
getPlotOnSecondAxis() | Indicates if this series is plotted on second value axis. |
getPoints() | Gets the collection of points in a series in a chart. |
getSecondPlotSize() | Returns or sets the size of the secondary section of either a pie of pie chart or a bar of pie chart, as a percentage of the size of the primary pie. |
getSeriesLines() | Returns a SeriesLines object that represents the series lines for a stacked bar chart or a stacked column chart. |
getShadow() | True if the series has a shadow. |
getShapeProperties() | Gets the ShapePropertyCollection object that holds the visual shape properties of the Series. |
getShowNegativeBubbles() | True if negative bubbles are shown for the chart group. |
getSizeRepresents() | Gets what the bubble size represents on a bubble chart. |
getSmooth() | Represents curve smoothing. |
getSplitType() | Returns or sets a value that how to determine which data points are in the second pie or bar on a pie of pie or bar of pie chart. |
getSplitValue() | Returns or sets a value that shall be used to determine which data points are in the second pie or bar on a pie of pie or bar of pie chart. |
getTrendLines() | Returns all the trendlines of this series. |
getType() | Gets a data series’ type. |
getUpBars() | Returns an DropBars object that represents the up bars on a line chart. |
getValues() | Represents the Y values of this chart series. |
getValuesFormatCode() | Represents format code of Values’s NumberList. |
getXErrorBar() | Represents X direction error bar of the series. |
getXValues() | Represents the x values of the chart series. |
getXValuesFormatCode() | Represents format code of X Values’s NumberList. |
getYErrorBar() | Represents Y direction error bar of the series. |
hasDropLines() | True if the chart has drop lines. |
hasHiLoLines() | True if the line chart has high-low lines. |
hasLeaderLines() | True if the series has leader lines. |
hasRadarAxisLabels() | True if a radar chart has category axis labels. |
hasSeriesLines() | True if a stacked column chart or bar chart has series lines or if a Pie of Pie chart or Bar of Pie chart has connector lines between the two sections. |
hasUpDownBars() | True if a line chart has up and down bars. |
hashCode() | |
isAutoSplit() | Indicates whether the threshold value is automatic. |
isColorVaried() | Represents if the color of points is varied. |
isFiltered() | Indicates whether the series is selected or filtered.True represents this series is filtered, and it will not be displayed on the chart. |
isVerticalValues() | Indicates whether the data source is vertical. |
move(int count) | Moves the series up or down. |
notify() | |
notifyAll() | |
setBar3DShapeType(int value) | Sets the 3D shape type used with the 3-D bar or column chart. |
setBubbleScale(int value) | Sets the scale factor for bubbles in the specified chart group. |
setBubbleSizeRepresents(int value) | Gets what the bubble size represents on a bubble chart. |
setBubbleSizes(String value) | Sets the bubble sizes values of the chart series. |
setColorVaried(boolean value) | Represents if the color of points is varied. |
setDoughnutHoleSize(int value) | Returns or sets the size of the hole in a doughnut chart group. |
setExplosion(int value) | The distance of an open pie slice from the center of the pie chart is expressed as a percentage of the pie diameter. |
setFiltered(boolean value) | Indicates whether the series is selected or filtered.True represents this series is filtered, and it will not be displayed on the chart. |
setFirstSliceAngle(short value) | Sets the angle of the first pie-chart or doughnut-chart slice, in degrees (clockwise from vertical). |
setGapWidth(short value) | Returns or sets the space between bar or column clusters, as a percentage of the bar or column width. |
setHas3DEffect(boolean value) | True if the series has a three-dimensional appearance. |
setHasDropLines(boolean value) | True if the chart has drop lines. |
setHasHiLoLines(boolean value) | True if the line chart has high-low lines. |
setHasLeaderLines(boolean value) | True if the series has leader lines. |
setHasRadarAxisLabels(boolean value) | True if a radar chart has category axis labels. |
setHasSeriesLines(boolean value) | True if a stacked column chart or bar chart has series lines or if a Pie of Pie chart or Bar of Pie chart has connector lines between the two sections. |
setHasUpDownBars(boolean value) | True if a line chart has up and down bars. |
setName(String value) | Sets the name of the data series. |
setOverlap(short value) | Specifies how bars and columns are positioned. |
setPlotOnSecondAxis(boolean value) | Indicates if this series is plotted on second value axis. |
setSecondPlotSize(short value) | Returns or sets the size of the secondary section of either a pie of pie chart or a bar of pie chart, as a percentage of the size of the primary pie. |
setShadow(boolean value) | True if the series has a shadow. |
setShowNegativeBubbles(boolean value) | True if negative bubbles are shown for the chart group. |
setSizeRepresents(int value) | Sets what the bubble size represents on a bubble chart. |
setSmooth(boolean value) | Represents curve smoothing. |
setSplitType(int value) | Returns or sets a value that how to determine which data points are in the second pie or bar on a pie of pie or bar of pie chart. |
setSplitValue(double value) | Returns or sets a value that shall be used to determine which data points are in the second pie or bar on a pie of pie or bar of pie chart. |
setType(int value) | Sets a data series’ type. |
setValues(String value) | Represents the Y values of this chart series. |
setValuesFormatCode(String value) | Represents format code of Values’s NumberList. |
setXValues(String value) | Represents the x values of the chart series. |
setXValuesFormatCode(String value) | Represents format code of X Values’s NumberList. |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getArea()
public Area getArea()
Represents the background area of Series object.
Returns: Area
getBar3DShapeType()
public int getBar3DShapeType()
Gets the 3D shape type used with the 3-D bar or column chart.
See Bar3DShapeType.
Returns: int
getBorder()
public Line getBorder()
Represents border of Series object.
Returns: Line
getBubbleScale()
public int getBubbleScale()
Gets the scale factor for bubbles in the specified chart group. It can be an integer value from 0 (zero) to 300, corresponding to a percentage of the default size. Applies only to bubble charts.
Returns: int
getBubbleSizeRepresents()
public int getBubbleSizeRepresents()
Gets what the bubble size represents on a bubble chart.
See BubbleSizeRepresents.
Remarks
NOTE: This member is now obsolete. Instead, please use Aspose.Cells.Charts.Series.SizeRepresents property. This property will be removed 12 months later since JANUARY 2012. Aspose apologizes for any inconvenience you may have experienced.
Returns: int
getBubbleSizes()
public String getBubbleSizes()
Gets the bubble sizes values of the chart series.
Returns: java.lang.String
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getCountOfDataValues()
public int getCountOfDataValues()
Gets the number of the data values.
Returns: int
getDataLabels()
public DataLabels getDataLabels()
Represents the DataLabels object for the specified ASeries.
Returns: DataLabels
getDisplayName()
public String getDisplayName()
Gets the series’s name that displays on the chart graph.
Returns: java.lang.String
getDoughnutHoleSize()
public int getDoughnutHoleSize()
Returns or sets the size of the hole in a doughnut chart group. The hole size is expressed as a percentage of the chart size, between 10 and 90 percent.
Returns: int
getDownBars()
public DropBars getDownBars()
Returns a DropBars object that represents the down bars on a line chart. Applies only to line charts.
Returns: DropBars
getDropLines()
public Line getDropLines()
Returns a Line object that represents the drop lines for a series on the line chart or area chart. Applies only to line chart or area charts.
Returns: Line
getExplosion()
public int getExplosion()
The distance of an open pie slice from the center of the pie chart is expressed as a percentage of the pie diameter.
Returns: int
getFirstSliceAngle()
public short getFirstSliceAngle()
Gets the angle of the first pie-chart or doughnut-chart slice, in degrees (clockwise from vertical). Applies only to pie, 3-D pie, and doughnut charts, 0 to 360.
Returns: short
getGapWidth()
public short getGapWidth()
Returns or sets the space between bar or column clusters, as a percentage of the bar or column width. The value of this property must be between 0 and 500.
Returns: short
getHas3DEffect()
public boolean getHas3DEffect()
True if the series has a three-dimensional appearance. Applies only to bubble charts.
Returns: boolean
getHiLoLines()
public Line getHiLoLines()
Returns a HiLoLines object that represents the high-low lines for a series on a line chart. Applies only to line charts.
Returns: Line
getLayoutProperties()
public SeriesLayoutProperties getLayoutProperties()
Represents the properties of layout.
Returns: SeriesLayoutProperties
getLeaderLines()
public Line getLeaderLines()
Represents leader lines on a chart. Leader lines connect data labels to data points. This object isn\u9225\u6a9b a collection; there\u9225\u6a9a no object that represents a single leader line.
Returns: Line
getLegendEntry()
public LegendEntry getLegendEntry()
Gets the legend entry according to this series.
Returns: LegendEntry
getMarker()
public Marker getMarker()
Gets the getMarker().
Returns: Marker
getName()
public String getName()
Gets the name of the data series.
Example
//Reference name to a cell
chart.getNSeries().get(0).setName("=A1");
//Set a string to name
chart.getNSeries().get(0).setName("First Series");
Returns: java.lang.String
getOverlap()
public short getOverlap()
Specifies how bars and columns are positioned. Can be a value between \u9225?100 and 100. Applies only to 2-D bar and 2-D column charts.
Returns: short
getPlotOnSecondAxis()
public boolean getPlotOnSecondAxis()
Indicates if this series is plotted on second value axis.
Returns: boolean
getPoints()
public ChartPointCollection getPoints()
Gets the collection of points in a series in a chart.
Remarks
When the chart is Pie of Pie or Bar of Pie, the last point is other point in first pie plot.
Returns: ChartPointCollection
getSecondPlotSize()
public short getSecondPlotSize()
Returns or sets the size of the secondary section of either a pie of pie chart or a bar of pie chart, as a percentage of the size of the primary pie. Can be a value from 5 to 200.
Returns: short
getSeriesLines()
public Line getSeriesLines()
Returns a SeriesLines object that represents the series lines for a stacked bar chart or a stacked column chart. Applies only to stacked bar and stacked column charts.
Returns: Line
getShadow()
public boolean getShadow()
True if the series has a shadow.
Returns: boolean
getShapeProperties()
public ShapePropertyCollection getShapeProperties()
Gets the ShapePropertyCollection object that holds the visual shape properties of the Series.
Returns: ShapePropertyCollection
getShowNegativeBubbles()
public boolean getShowNegativeBubbles()
True if negative bubbles are shown for the chart group. Valid only for bubble charts.
Returns: boolean
getSizeRepresents()
public int getSizeRepresents()
Gets what the bubble size represents on a bubble chart.
See BubbleSizeRepresents.
Remarks
BubbleSizeRepresents.SizeIsArea means the value getBubbleSizes() is the area of the bubble. BubbleSizeRepresents.SizeIsWidth means the value getBubbleSizes() is the width of the bubble.
Returns: int
getSmooth()
public boolean getSmooth()
Represents curve smoothing. True if curve smoothing is turned on for the line chart or scatter chart. Applies only to line and scatter connected by lines charts.
Returns: boolean
getSplitType()
public int getSplitType()
Returns or sets a value that how to determine which data points are in the second pie or bar on a pie of pie or bar of pie chart.
See ChartSplitType.
Returns: int
getSplitValue()
public double getSplitValue()
Returns or sets a value that shall be used to determine which data points are in the second pie or bar on a pie of pie or bar of pie chart.
Returns: double
getTrendLines()
public TrendlineCollection getTrendLines()
Returns all the trendlines of this series.
Returns: TrendlineCollection
getType()
public int getType()
Gets a data series’ type.
See ChartType.
Returns: int
getUpBars()
public DropBars getUpBars()
Returns an DropBars object that represents the up bars on a line chart. Applies only to line charts.
Returns: DropBars
getValues()
public String getValues()
Represents the Y values of this chart series.
Returns: java.lang.String
getValuesFormatCode()
public String getValuesFormatCode()
Represents format code of Values’s NumberList.
Returns: java.lang.String
getXErrorBar()
public ErrorBar getXErrorBar()
Represents X direction error bar of the series.
Returns: ErrorBar
getXValues()
public String getXValues()
Represents the x values of the chart series.
Returns: java.lang.String
getXValuesFormatCode()
public String getXValuesFormatCode()
Represents format code of X Values’s NumberList.
Returns: java.lang.String
getYErrorBar()
public ErrorBar getYErrorBar()
Represents Y direction error bar of the series.
Returns: ErrorBar
hasDropLines()
public boolean hasDropLines()
True if the chart has drop lines. Applies only to line chart or area charts.
Returns: boolean
hasHiLoLines()
public boolean hasHiLoLines()
True if the line chart has high-low lines. Applies only to line charts.
Returns: boolean
hasLeaderLines()
public boolean hasLeaderLines()
True if the series has leader lines.
Returns: boolean
hasRadarAxisLabels()
public boolean hasRadarAxisLabels()
True if a radar chart has category axis labels. Applies only to radar charts.
Returns: boolean
hasSeriesLines()
public boolean hasSeriesLines()
True if a stacked column chart or bar chart has series lines or if a Pie of Pie chart or Bar of Pie chart has connector lines between the two sections. Applies only to stacked column charts, bar charts, Pie of Pie charts, or Bar of Pie charts.
Returns: boolean
hasUpDownBars()
public boolean hasUpDownBars()
True if a line chart has up and down bars. Applies only to line charts.
Returns: boolean
hashCode()
public native int hashCode()
Returns: int
isAutoSplit()
public boolean isAutoSplit()
Indicates whether the threshold value is automatic.
Returns: boolean
isColorVaried()
public boolean isColorVaried()
Represents if the color of points is varied. The chart must contain only one series.
Returns: boolean
isFiltered()
public boolean isFiltered()
Indicates whether the series is selected or filtered.True represents this series is filtered, and it will not be displayed on the chart.
Returns: boolean
isVerticalValues()
public boolean isVerticalValues()
Indicates whether the data source is vertical.
Returns: boolean
move(int count)
public void move(int count)
Moves the series up or down.
Parameters:
Parameter | Type | Description |
---|---|---|
count | int | The number of moving up or down. Move the series up if this is less than zero; Move the series down if this is greater than zero. |
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
setBar3DShapeType(int value)
public void setBar3DShapeType(int value)
Sets the 3D shape type used with the 3-D bar or column chart.
See Bar3DShapeType.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
setBubbleScale(int value)
public void setBubbleScale(int value)
Sets the scale factor for bubbles in the specified chart group. It can be an integer value from 0 (zero) to 300, corresponding to a percentage of the default size. Applies only to bubble charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
setBubbleSizeRepresents(int value)
public void setBubbleSizeRepresents(int value)
Gets what the bubble size represents on a bubble chart.
See BubbleSizeRepresents.
Remarks
NOTE: This member is now obsolete. Instead, please use Aspose.Cells.Charts.Series.SizeRepresents property. This property will be removed 12 months later since JANUARY 2012. Aspose apologizes for any inconvenience you may have experienced.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
setBubbleSizes(String value)
public void setBubbleSizes(String value)
Sets the bubble sizes values of the chart series.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
setColorVaried(boolean value)
public void setColorVaried(boolean value)
Represents if the color of points is varied. The chart must contain only one series.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setDoughnutHoleSize(int value)
public void setDoughnutHoleSize(int value)
Returns or sets the size of the hole in a doughnut chart group. The hole size is expressed as a percentage of the chart size, between 10 and 90 percent.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
setExplosion(int value)
public void setExplosion(int value)
The distance of an open pie slice from the center of the pie chart is expressed as a percentage of the pie diameter.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
setFiltered(boolean value)
public void setFiltered(boolean value)
Indicates whether the series is selected or filtered.True represents this series is filtered, and it will not be displayed on the chart.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setFirstSliceAngle(short value)
public void setFirstSliceAngle(short value)
Sets the angle of the first pie-chart or doughnut-chart slice, in degrees (clockwise from vertical). Applies only to pie, 3-D pie, and doughnut charts, 0 to 360.
Parameters:
Parameter | Type | Description |
---|---|---|
value | short |
setGapWidth(short value)
public void setGapWidth(short value)
Returns or sets the space between bar or column clusters, as a percentage of the bar or column width. The value of this property must be between 0 and 500.
Parameters:
Parameter | Type | Description |
---|---|---|
value | short |
setHas3DEffect(boolean value)
public void setHas3DEffect(boolean value)
True if the series has a three-dimensional appearance. Applies only to bubble charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setHasDropLines(boolean value)
public void setHasDropLines(boolean value)
True if the chart has drop lines. Applies only to line chart or area charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setHasHiLoLines(boolean value)
public void setHasHiLoLines(boolean value)
True if the line chart has high-low lines. Applies only to line charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setHasLeaderLines(boolean value)
public void setHasLeaderLines(boolean value)
True if the series has leader lines.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setHasRadarAxisLabels(boolean value)
public void setHasRadarAxisLabels(boolean value)
True if a radar chart has category axis labels. Applies only to radar charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setHasSeriesLines(boolean value)
public void setHasSeriesLines(boolean value)
True if a stacked column chart or bar chart has series lines or if a Pie of Pie chart or Bar of Pie chart has connector lines between the two sections. Applies only to stacked column charts, bar charts, Pie of Pie charts, or Bar of Pie charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setHasUpDownBars(boolean value)
public void setHasUpDownBars(boolean value)
True if a line chart has up and down bars. Applies only to line charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setName(String value)
public void setName(String value)
Sets the name of the data series.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
setOverlap(short value)
public void setOverlap(short value)
Specifies how bars and columns are positioned. Can be a value between \u9225?100 and 100. Applies only to 2-D bar and 2-D column charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | short |
setPlotOnSecondAxis(boolean value)
public void setPlotOnSecondAxis(boolean value)
Indicates if this series is plotted on second value axis.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setSecondPlotSize(short value)
public void setSecondPlotSize(short value)
Returns or sets the size of the secondary section of either a pie of pie chart or a bar of pie chart, as a percentage of the size of the primary pie. Can be a value from 5 to 200.
Parameters:
Parameter | Type | Description |
---|---|---|
value | short |
setShadow(boolean value)
public void setShadow(boolean value)
True if the series has a shadow.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setShowNegativeBubbles(boolean value)
public void setShowNegativeBubbles(boolean value)
True if negative bubbles are shown for the chart group. Valid only for bubble charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setSizeRepresents(int value)
public void setSizeRepresents(int value)
Sets what the bubble size represents on a bubble chart.
See BubbleSizeRepresents.
Remarks
BubbleSizeRepresents.SizeIsArea means the value getBubbleSizes() is the area of the bubble. BubbleSizeRepresents.SizeIsWidth means the value getBubbleSizes() is the width of the bubble.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
setSmooth(boolean value)
public void setSmooth(boolean value)
Represents curve smoothing. True if curve smoothing is turned on for the line chart or scatter chart. Applies only to line and scatter connected by lines charts.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
setSplitType(int value)
public void setSplitType(int value)
Returns or sets a value that how to determine which data points are in the second pie or bar on a pie of pie or bar of pie chart.
See ChartSplitType.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
setSplitValue(double value)
public void setSplitValue(double value)
Returns or sets a value that shall be used to determine which data points are in the second pie or bar on a pie of pie or bar of pie chart.
Parameters:
Parameter | Type | Description |
---|---|---|
value | double |
setType(int value)
public void setType(int value)
Sets a data series’ type.
See ChartType.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
setValues(String value)
public void setValues(String value)
Represents the Y values of this chart series.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
setValuesFormatCode(String value)
public void setValuesFormatCode(String value)
Represents format code of Values’s NumberList.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
setXValues(String value)
public void setXValues(String value)
Represents the x values of the chart series.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
setXValuesFormatCode(String value)
public void setXValuesFormatCode(String value)
Represents format code of X Values’s NumberList.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |