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

StripBase Class

The base class for all strips.

Declaration

public abstract class StripBase
extends StyledElement

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)

Inheritance

StripBase()

Initializes a new StripBase class instance with default parameters.

Declaration

public StripBase()

Methods

getAxisLabel() Method

Returns the label that idendifies the strip on the axis.

Declaration

public StripAxisLabel getAxisLabel()

Returns

Type Description
StripAxisLabel

The StripAxisLabel object specifying an individual axis label for a strip.

getLegendText() Method

Returns text that identifies the strip in the chart legend.

Declaration

public String getLegendText()

Returns

Type Description
String

The legend text for the strip.

getStyle() Method

Returns the strip’s appearance settings.

Declaration

public StripStyle getStyle()

Returns

Type Description
StripStyle

The StripStyle object specifying strip apearance settings.

isMaxLimitEnabled() Method

Returns the value indicating whether the strip is limited by its maximum value.

Declaration

public boolean isMaxLimitEnabled()

Returns

Type Description
boolean

true if its maximum value limits the strip; otherwise, false.

isMinLimitEnabled() Method

Returns the value indicating whether the strip is limited by its minimum value.

Declaration

public boolean isMinLimitEnabled()

Returns

Type Description
boolean

true if its minimum value limits the strip; otherwise, false.

isVisible() Method

Returns the value indicating whether the strip is displayed on a diagram.

Declaration

public boolean isVisible()

Returns

Type Description
boolean

true if the strip is visible; otherwise, false.

isVisibleInLegend() Method

Returns the value indicating whether the strip is displayed in the chart legend.

Declaration

public boolean isVisibleInLegend()

Returns

Type Description
boolean

true if the strip is shown in the legend; otherwise, false.

setAxisLabel(StripAxisLabel) Method

Specifies the label that identifies the strip on the axis.

Declaration

public void setAxisLabel(StripAxisLabel axisLabel)

Parameters

Name Type Description
axisLabel StripAxisLabel

The StripAxisLabel object specifying a strip’s axis label.

setLegendText(String) Method

Specifies text that identifies the strip in the chart legend.

Declaration

public void setLegendText(String text)

Parameters

Name Type Description
text String

The legend text for the strip.

setMaxLimitEnabled(boolean) Method

Specifies the value indicating whether the strip is limited by its maximum value.

Declaration

public void setMaxLimitEnabled(boolean value)

Parameters

Name Type Description
value boolean

true if its maximum value limits the strip; otherwise, false.

setMinLimitEnabled(boolean) Method

Specifies the value indicating whether the strip is limited by its minimum value.

Declaration

public void setMinLimitEnabled(boolean value)

Parameters

Name Type Description
value boolean

true if its minimum value limits the strip; otherwise, false.

setStyle(StripStyle) Method

Specifies the strip’s appearance settings.

Declaration

public void setStyle(StripStyle style)

Parameters

Name Type Description
style StripStyle

The StripStyle object specifying strip apearance settings.

setVisible(boolean) Method

Specifies the value indicating whether the strip is displayed on a diagram.

Declaration

public void setVisible(boolean value)

Parameters

Name Type Description
value boolean

true if the strip is visible; otherwise, false.

setVisibleInLegend(boolean) Method

Specifies the value indicating whether the strip is displayed in the chart legend.

Declaration

public void setVisibleInLegend(boolean value)

Parameters

Name Type Description
value boolean

true if the strip is shown in the legend; otherwise, false.