Class AxisTicks
A class which contains axis ticks. Used internally when drawing tick marks and grid lines.
Implements
Inherited Members
Namespace:
Assembly: .dll
Syntax
public final class AxisTicks implements ICleanable
Constructors
AxisTicks()
Creates a new instance of AxisTicks instance
Declaration
public AxisTicks()
Methods
clear()
Declaration
public void clear()
getCullingPriorities()
Gets the major ticks culling priorities which are used during culling of axis tick labels
Declaration
public final IntegerValues getCullingPriorities()
Returns
| Type | Description |
|---|---|
| IntegerValues | The major ticks culling priorities |
getMajorTicks()
Gets the major ticks
Declaration
public final DoubleValues getMajorTicks()
Returns
| Type | Description |
|---|---|
| DoubleValues | The major ticks |
getMinorTicks()
Gets the minor ticks
Declaration
public final DoubleValues getMinorTicks()
Returns
| Type | Description |
|---|---|
| DoubleValues | The minor ticks |
isEmpty()
Checks whether the AxisTicks instance is empty
Declaration
public final boolean isEmpty()
Returns
| Type | Description |
|---|---|
| boolean | True if AxisTicks instance is empty |
isFirstMajorTickEven()
Gets the value indicating whether the first tick in AxisTicks#getMajorTicks() is even. This value is used for drawing major axis bands
Declaration
public final boolean isFirstMajorTickEven()
Returns
| Type | Description |
|---|---|
| boolean | True if first tick in in AxisTicks#getMajorTicks() is even. |
setIsFirstMajorTickEven(boolean isFirstMajorTickEven)
Sets the value indicating whether the first tick in AxisTicks#getMajorTicks() is even. This value is used for drawing major axis bands
Declaration
public final void setIsFirstMajorTickEven(boolean isFirstMajorTickEven)
Parameters
| Type | Name | Description |
|---|---|---|
| boolean | isFirstMajorTickEven | If true the first tick in in AxisTicks#getMajorTicks() is even. |