StepAreaSeries Class
A series that displays data as areas on a diagram, in such way that series points are connected using only horizontal and vertical lines.
Declaration
public class StepAreaSeries
extends AreaSeries
Remarks
The following image demonstrates the Step Area 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)
Inheritance
StepAreaSeries()
Initializes a new StepAreaSeries class instance with default parameters.
Declaration
public StepAreaSeries()
Methods
isInvertedStep() Method
Returns a value specifying which line (horizontal or vertical) should be drawn first.
Declaration
public boolean isInvertedStep()
Returns
Type | Description |
---|---|
boolean | true if a vertical line should be drawn first; false if a horizontal line should be drawn first. |
setInvertedStep(boolean) Method
Specifies a value indicating which line (horizontal or vertical) should be drawn first.
Declaration
public void setInvertedStep(boolean value)
Parameters
Name | Type | Description |
---|---|---|
value | boolean | true if a vertical line should be drawn first; false if a horizontal line should be drawn first. |