0.1.0 • Published 9 years ago

ea-timeline v0.1.0

Weekly downloads
5
License
MIT
Repository
github
Last release
9 years ago

ea-timeline

npm (scoped) Dependency Status devDependency Status Build Status

Reactive timeline/gantt chart using D3.

Features

  • Easy to update with new data
  • Automatically scrolls with time
  • Resizes horizontally

Getting started

In your website

npm install ea-timeline
<!DOCTYPE html>
<html>
<head>
  ...
  <script src="node_modules/build/ea-timeline.min.js "></script>
  ...
</head>
<body>
    ...
    <div id="ea-timeline"></div>
    ...
   <script>
   var data = [
    {
      key: 'Process 1',
      values: [
        {
          startTime: moment().subtract(4, 'hours'),
          endTime: moment().subtract(3, 'hours')
        }
      ]
    }
  ];
  var timeline = ea.timeline({elementSelector: '#ea-timeline', data: data});
   </script>

For development

git clone https://github.com/sebastiankr/ea-timeline.git
cd ea-timeline
npm install
npm start

alt tag

TODO

Credits

Inspired by

License

MIT

0.1.0

9 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago