Skip to content

haoygit/react-chart-timelines

 
 

Repository files navigation

React Chart Timelines

Demo

Install

# with npm
npm install react-chart-timelines

# or with Yarn
yarn add react-chart-timelines

Use

import Timeline from 'react-chart-timelines'

const MyWidget = () => <Timeline {...props} />

export default MyWidget

Styling

Using Webpack

Using Webpack with CSS loader, add the following:

import 'react-chart-timelines/lib/css/style.css'

Using Sass (SCSS)

Using Sass you can configure the timeline with variables:

$react-chart-timelines-font-family: MaryAnn;
$react-chart-timelines-sidebar-width: 320px;

@import '~/react-chart-timelines/src/scss/style';

Without build tools

Create a CSS file with the contents of react-chart-timelines/lib/css/style.css and include it in <head>

Development

npm install
npm run watch

This library is developed using VSCode - opening it in VSCode will recommend extensions, and enable linting and auto-formatting of code.

Packages

No packages published

Languages

  • JavaScript 85.7%
  • SCSS 14.3%