Skip to main content
A newer version of this page is available.

PointSeries Class

A series that displays data as scatter points.

Declaration

public class PointSeries
extends Series

Remarks

The following image demonstrates Point series:

Point series

Inherited Members

java.lang.Object.equals(java.lang.Object)(Object)
java.lang.Object.hashCode()()
java.lang.Object.notify()()
java.lang.Object.notifyAll()()
java.lang.Object.toString()()
java.lang.Object.wait()()
java.lang.Object.wait(long)(long)
java.lang.Object.wait(long, int)(long,int)

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.