An adaptor for the Chart.js library enabling usage of time series without dependencies to any 3rd party libraries.
Requires Chart.js 2.8.0 or later.
Note: once loaded, this adapter overrides the default date-adapter provided in Chart.js (as a side-effect).
npm install chartjs-adapter-date-std --save
You need to register the Adaptor manually once:
import { _adapters } from 'chart.js';
import {StdDateAdapter} from 'chartjs-adapter-date-std';
_adapters._date.override( StdDateAdapter.chartJsStandardAdapter());
You first need to install node dependencies (requires Node.js):
> npm install
The following commands will then be available from the repository root:
> npm run build // build dist files
> npm run test // run karma tests
chartjs-adapter-date-std
is available under the MIT license.