See: Description
Interface | Description |
---|---|
DateAdaptersOptionsFactory<T extends DateAdapterOptions> |
Factory interface to get the date adapter options (form chart or from default global ones) related to the date adapter.
|
Class | Description |
---|---|
AbstractModule |
Every date adapter needs to have a module with some attributes of date adapter itself.
It provides a single point of glass on date adapter. |
DateAdapter |
Maps a date adapter provided by CHART.JS to manage time series.
It provides a set of methods to manage, parse and format dates and times. |
DateAdapterFormats |
Contains all date time formats that a date adapter can manage.
|
DateAdapterOptions |
Default class to use to map the date adapter options, if needed.
It must be extended with specific properties depending on date adapter. |
DatefnsModule |
Date adapter module for DATE-FNS.
date-fns provides the most comprehensive, yet simple and consistent toolset for manipulating JavaScript dates. |
DefaultsFormatsOverrider |
Utility used by date adapter module to override the defaults formats for time unit.
This is needed because some defaults provided out of the box by adapters are not consistent (like WEEK). |
LuxonModule |
Date adapter module for LUXON.
luxon provides a powerful, modern, and friendly wrapper for javascript dates and times. LUXON chart.js adapter has implemented the formats by Intl.DateTimeFormat instead of strings. To implement Intl.DateTimeFormat is quite complex and maybe useless. Therefore for LUXON, we use a predefined formats as string but equals to defaults of the adapter. |
LuxonOptions |
Simple class to map LUXON options to provide to date time adapter.
|
LuxonOptionsFactory |
Date adapter options factory for LUXON option.
It should be use to get stored LUXON options from global, chart options and configurations. |
MomentModule |
Date adapter module for MOMENT.
moment to parse, validate, manipulate, and display dates and times in JavaScript. |