AnyChart
API Reference
Still have questions?
Contact support
Top

class anychart.scales.DateTimeTicks Improve this Doc

Extends: anychart.core.Base

The DateTimeTicks class contains methods for configuring ticks on the DateTime scale.

Methods Overview

Specific settings
count()Ticks count.
get()Returns an array of ticks. Each tick is a value in terms of data, to make a tick on.
interval()Ticks interval settings.
set()Setups ticks as an explicit array of fixed ticks.
Miscellaneous
getIntervalUnit()Returns interval unit.
getIntervalUnitCount()Returns interval unit count.

Methods Description

count

Getter for ticks count value.

Returns:

number - Ticks count value.
Setter for ticks count value.

Params:

NameTypeDefaultDescription
countnumber
4
Ticks count value. Note: If value is defined, but not a number or less than 2, it defaults to 5.

Returns:

anychart.scales.DateTimeTicks - Self instance for method chaining.

get

Returns an array of ticks. Each tick is a value in terms of data, to make a tick on.
Note: returns correct values only after anychart.scales.Base#finishAutoCalc or after chart.draw()

Returns:

Array - Array of ticks.

getIntervalUnit

Returns interval unit.

Returns:

anychart.enums.Interval - Return the current interval unit.

getIntervalUnitCount

Returns interval unit count.

Returns:

number - Return the current interval unit count.

interval

Getter for ticks interval value. Note: Interval value can get only if it was set explicitly, otherwise, it returns NaN.

Returns:

string - Interval value in ISO 8601 interval string.
Setter for ticks interval value by a string representing date part or ISO 8601 interval string..

Params:

NameTypeDescription
isoDatestringValue to set.

Returns:

anychart.scales.DateTimeTicks - Self instance for method chaining.
Setter for ticks interval value by the unit.

Params:

NameTypeDescription
unitanychart.enums.Interval | stringSet unit by first letter. "year" is "y", "month" is "m" etc.
Note: 'minutes' is 'n'.
countnumberAny positive value.

Returns:

anychart.scales.DateTimeTicks - Self instance for method chaining.
Setter for ticks interval value. Note: If any passed value is defined but is not a number or less than 0, it defaults to NaN and count() resets to 5.

Params:

NameTypeDescription
yearsnumberAny positive value.
monthsnumberAny positive value.
daysnumberAny positive value.
hoursnumberAny positive value.
minutesnumberAny positive value.
secondsnumberAny positive value.

Returns:

anychart.scales.DateTimeTicks - Self instance for method chaining.

set

Setups ticks as an explicit array of fixed ticks.

Params:

NameTypeDescription
ticksArrayExplicit ticks array.

Returns:

anychart.scales.DateTimeTicks - Self instance for method chaining.