Browse Source

Fix TimelineChart time format issue (#1283)

pull/1325/merge
mdluo 8 years ago
committed by niko
parent
commit
c86c321c46
  1. 4
      src/components/Charts/TimelineChart/index.js

4
src/components/Charts/TimelineChart/index.js

@ -71,8 +71,8 @@ export default class TimelineChart extends React.Component {
const timeScale = {
type: 'time',
tickCount: 10,
mask: 'HH:MM',
tickInterval: 60 * 60 * 1000,
mask: 'HH:mm',
range: [0, 1],
};

Loading…
Cancel
Save