PeriodSelector

Type class

PeriodSelector displays date input fields and predefined period buttons.

Inheritance

PeriodSelector does not extend any other symbol.

PeriodSelector is not extended by any other symbol.

Properties

dateFormat
#

Type string

Default DD-MM-YYYY

Date format of date input fields. Check this page for possible codes. Note, only numeric date formats are allowed, so don't use MMM or MMMM month format.

Please note that two-digit years (YY) is NOT supported in this setting.

fromText
#

Type string

Default From:

Text displayed next to "from" date input field.

hideOutOfScopePeriods
#

Type boolean

Default true

Specifies if period buttons with date range bigger than available data should be hidden.

inputFieldsEnabled
#

Type boolean

Default true

Specifies whether period selector displays "from" and "to" date input fields.

inputFieldWidth
#

Type number

Default 100

Width of date input fields, in pixels. Works only if period selector is horizontal.

listeners
#

Type object[]

You can add listeners of events using this property. Example: listeners = [{"event":"changed", "method":handleEvent}];

periodsText
#

Type string

Default Zoom:

Text displayed next to predefined period buttons.

position
#

Type string

Default bottom

Possible values: "right", "left", "top", "bottom".

selectFromStart
#

Type boolean

Default false

Specifies whether predefined period buttons should select a period from the beginning or the end of the data.

toText
#

Type string

Default To:

Text displayed next to "to" date input field.

width
#

Type number

Default 180

Width of a period selector, when position is "left" or "right".

Methods

addListener(
  type,
  handler
)

#

Returns void

type - string like 'changed' (listed in 'events' section of this class). handler - function which is called when event happens

removeListener(
  obj,
  type,
  handler
)

#

Returns void

setDefaultPeriod()

#

Returns void

Resets the chart zoom to whatever default PeriodSelector button is. Can be used to simulate a click on period buttons buy changing "selected" property of PeriodSelector.periods items.

Events

#changed

Param {type:"changed", startDate:Date, endDate:Date, predefinedPeriod:periodString, count:Number, event:MouseEvent}

Dispatched when dates in period selector input fields are changed or user clicks on one of the predefined period buttons.

Adapters

PeriodSelector does not have any adapters.