PointSeries Class
A series that displays data as scatter points.
Declaration
public class PointSeries
extends Series
Remarks
The following image demonstrates Point series:
Inherited Members
Inheritance
PointSeries()
Initializes a new PointSeries class instance with default parameters.
Declaration
public PointSeries()
Methods
getLabel() Method
Returns the label settings of the Point series points.
Declaration
public MarkerSeriesLabel getLabel()
Returns
Type | Description |
---|---|
MarkerSeriesLabel | The MarkerSeriesLabel object that stores parameters of series point labels. |
getStyle() Method
Returns the appearance parameters of a Point series.
Declaration
public PointSeriesStyle getStyle()
Returns
Type | Description |
---|---|
PointSeriesStyle | The PointSeriesStyle object that configures the appearance of the Point series. |
isColorEach() Method
Returns the value indicating whether points have different colors.
Declaration
public boolean isColorEach()
Returns
Type | Description |
---|---|
boolean | true if points should be multicolored; otherwise false. |
setColorEach(boolean) Method
Specifies the value indicating whether points have different colors.
Declaration
public void setColorEach(boolean value)
Parameters
Name | Type | Description |
---|---|---|
value | boolean | true if points should be multicolored; otherwise false. |
setLabel(MarkerSeriesLabel) Method
Specifies the label settings of the Point series points.
Declaration
public void setLabel(MarkerSeriesLabel seriesLabel)
Parameters
Name | Type | Description |
---|---|---|
seriesLabel | MarkerSeriesLabel | The MarkerSeriesLabel object that stores parameters of series point labels. |
setStyle(PointSeriesStyle) Method
Specifies the appearance parameters of a Point series.
Declaration
public void setStyle(PointSeriesStyle style)
Parameters
Name | Type | Description |
---|---|---|
style | PointSeriesStyle | The PointSeriesStyle object that configures the appearance of the Point series. |