@nens/lizard-ui-timeline
v1.0.2
Published
A timeline UI component
Downloads
4
Readme
lizard-ui-timeline
A timeline component for use in Lizard.
Uses D3.js' range/domain functions. React is used to render the SVG elements.
Installation
With Yarn:
$ yarn add lizard-ui-timeline
or npm:
$ npm install lizard-ui-timeline
Usage
import React, { Component } from "react";
import { Timeline } from "lizard-ui-timeline";
class App extends Component {
render() {
return (
<div className="App">
<Timeline
fromDate={}
toDate={}
...
/>
</div>
);
}
}
export default App;
Props
fromDate
: date, optional (default: 1-1-1970) - start of temporal extenttoDate
: date, optional (default: current datetime) - end of temporal extentwindowFromDate
: date, optional - start of temporal aggregationwindowToDate
: date, optional - end of temporal aggregationisActive
: boolean, optional (default: true)play
: function, optionalpause
: function, optional