class anychart.scales.OrdinalTicks Improve this Doc
Extends: anychart.core.Base
The OrdinalTicks class contains methods for configuring ticks on the Ordinal scale.
Methods Overview
Specific settings | |
get() | Returns an array of ticks. Each tick can be: |
interval() | Ticks interval. |
maxCount() | Maximum ticks count. |
names() | Tick names settings. |
set() | Setups ticks as an explicit array of fixed ticks. |
Methods Description
get
Returns an array of ticks. Each tick can be:
- A value in terms of data, to make a tick on.
- An array of two values to make the tick from the first one to the second one.
Returns:
Array - Array of ticks.Try it:
interval
Getter for ticks interval value.
Returns:
number - Interval value. See listing
var ticks = scale.ticks(); var interval = ticks.interval();
Setter for ticks interval value.
Passed value is rounded and defaults to 1 in case of incorrect settings.
Passed value is rounded and defaults to 1 in case of incorrect settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
interval | number | 1 | Ticks interval to set. |
Returns:
anychart.scales.OrdinalTicks - Self instance for method chaining.Try it:
maxCount
Getter for maximum ticks count.
Returns:
number - Maximum ticks count. See listing
var ticks = scale.ticks(); var maxCount = ticks.maxCount();
Setter for maximum ticks count.
Params:
Name | Type | Default | Description |
---|---|---|---|
count | number | 100 | Maximum ticks count to set. |
Returns:
anychart.scales.OrdinalTicks - Self instance for method chaining.Try it:
names
Setter for the tick names.
Params:
Name | Type | Description |
---|---|---|
names | Array | An array of tick aliases. |
Returns:
anychart.scales.OrdinalTicks - Self instance for method chaining.Try it:
set
Setups ticks as an explicit array of fixed ticks.
Params:
Name | Type | Description |
---|---|---|
ticks | Array | Explicit tick indexes array. |
Returns:
anychart.scales.OrdinalTicks - Returns itself for chaining.Try it: