d-band / gantt

Gantt chart library using jsx support SVG, Canvas and SSR
https://d-band.github.io/gantt/
274 stars 61 forks source link

can this module be used for real time data #7

Closed RRRASU closed 6 years ago

RRRASU commented 6 years ago

I am looking for gantt charts that support real time data . Do this module supports real time data .

helloyou2012 commented 6 years ago

@RRR85200 I haven't try, you can try like this:

import Gantt from 'gantt';

const gantt = new Gantt('#canvas-root', initData, {
  viewMode: 'week'
});
// setData will re-render
gantt.setData(realTimeData);