AxisSet
public interface IAxisSet
Modifier and Type | Method | Description |
---|---|---|
void |
adjustRange() |
Adjusts the axis range of all axes.
|
int |
createXAxis() |
Creates the X axis.
|
int |
createYAxis() |
Creates the Y axis.
|
void |
deleteXAxis(int id) |
Deletes the X Axis for given axis id.
|
void |
deleteYAxis(int id) |
Deletes the Y Axis for given id.
|
IAxis[] |
getAxes() |
Gets the array of all axes.
|
IAxis[] |
getXAxes() |
Gets the array of X axes.
|
IAxis |
getXAxis(int id) |
Gets the X axis for the given id.
|
int[] |
getXAxisIds() |
Gets the array of X axis ids.
|
IAxis[] |
getYAxes() |
Gets the array of Y axes.
|
IAxis |
getYAxis(int id) |
Gets the Y axis for given index.
|
int[] |
getYAxisIds() |
Gets the array of Y axis ids.
|
void |
zoomIn() |
Zooms in all axes.
|
void |
zoomOut() |
Zooms out all axes.
|
int createXAxis()
int createYAxis()
IAxis getXAxis(int id)
id
- the axis idIAxis getYAxis(int id)
id
- the axis idIAxis[] getXAxes()
IAxis[] getYAxes()
IAxis[] getAxes()
int[] getXAxisIds()
int[] getYAxisIds()
void deleteXAxis(int id)
id
- the axis idjava.lang.IllegalArgumentException
- if the given axis id is '0', or if there is no axis for the
given id.void deleteYAxis(int id)
id
- the axis idjava.lang.IllegalArgumentException
- if the given axis id is '0', or if there is no axis for the
given id.void adjustRange()
void zoomIn()
void zoomOut()