https://github.com/fusioncharts/date-range-chooser-ext
Date range chooser extension for FusionCharts time-series chart
https://github.com/fusioncharts/date-range-chooser-ext
Last synced: 4 months ago
JSON representation
Date range chooser extension for FusionCharts time-series chart
- Host: GitHub
- URL: https://github.com/fusioncharts/date-range-chooser-ext
- Owner: fusioncharts
- Created: 2016-10-20T10:07:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-27T12:04:39.000Z (over 8 years ago)
- Last Synced: 2025-01-04T04:47:51.176Z (6 months ago)
- Language: JavaScript
- Size: 4.73 MB
- Stars: 1
- Watchers: 21
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Date Range Chooser
## A FusionCharts Time Series Extension
This extension helps in selecting start and end dates of a FusionTime XT chart precisely. Using the mouse to select a part of the timeline navigator to inspect data is grossly approximate. It is often the case that one is aware of a particular period of date-time and would like to inspect the same period to visualise the corresponding data. This extension is ideal for such cases.### Browser Inclusion
```html```
### Node Inclusion
To run the extension one Node, one must also provide a custom DOM implementaion (such as [JSDOM](https://github.com/tmpvar/jsdom)).
```javascript
var FusionCharts = require('fusioncharts');
require('fusioncharts/fusioncharts.timeseries')(FusionCharts);
var DateRangeChooser = require('./fcts-ext-daterange.js');
```