0.1.31 • Published 6 years ago

react-timelinejs v0.1.31

Weekly downloads
48
License
MIT
Repository
github
Last release
6 years ago

react-timelinejs Build Status NPM version Known Vulnerabilities CodeFactor BCH compliance

React Timeline component

Live Demo

For examples of timeline, go to https://wizcheng.github.io/react-timelinejs

Getting Started

Install

yarn add -D react-timelinejs

Usage

import Timeline from 'react-timelinejs';
...


const data = [
    {
        start: new Date('2018-07-12T13:14:15'),
        end: new Date('2018-07-12T15:14:15'),
        label: 'My First Event 1'
    },
    {
        start: new Date('2018-07-16:14:15'),
        end: new Date('2018-07-12T17:14:15'),
        label: 'My First Event 2'
    },
    {
        start: new Date('2018-07-12T12:14:15'),
        end: new Date('2018-07-12T19:14:15'),
        label: 'My Second Event'
    }
];

...
<Timeline data={data}/>

Properties

PropsTypeDefaultDescription
dataArray[]List of time line events, minimum values start,end,label
linesArray[]List of lines, minimum values date, className
dataKeystringnullkey of data, passed to d3js, to optimize modification detection
widthnumber700width of whole widget
heightnumber400height of whole widget
trackHeightnumber20Max height of each track
labelbooltrueShow label on the track or not
tooltipsbooltrueShow tooltip on mouseover
tooltipContentfuncTBAfunction (d) => {}, to return content of tooltip
brushboolfalseShow brush
brushRangeArraynullbrush range, [start, end]
rangeArraynullrange of data to focus, [start, end]
onBrushfuncnullcallback on brush change
onMouseoverfuncnullcallback on mouseover event
onClickfuncnullcallback on mouse click event, (d) => {}

Custom Styles

TBA

0.1.31

6 years ago

0.1.30

6 years ago

0.1.29

6 years ago

0.1.28

6 years ago

0.1.26

6 years ago

0.1.27

6 years ago

0.1.25

6 years ago

0.1.24

6 years ago

0.1.23

6 years ago

0.1.21

6 years ago

0.1.20

6 years ago

0.1.19

6 years ago

0.1.18

6 years ago

0.1.17

6 years ago

0.1.16

6 years ago

0.1.15

6 years ago

0.1.14

6 years ago

0.1.13

6 years ago

0.1.12

6 years ago

0.1.11

6 years ago

0.1.8

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago