This repository has been archived by the owner on May 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 179
Dates
Eric S. Bullington edited this page Feb 14, 2015
·
9 revisions
Currently, dates are supported in the multiseries charts, including LineChart
, ScatterChart
, AreaChart
. You can pass date objects in directly, or use an accessor to create a date from a UNIX date number. You should make sure to also include an xAxisTickInterval
or yAxisTickInterval` indicating the time unit and interval:
var LineChart = require('react-d3').LineChart;
var data = {
'series 1': [
{ x: 1423915030039, y: 11.2 },
...additional data....
{ x: 1423913330040, y: 2.1 }
]
};
<LineChart
data={data}
xAccessor={(d)=> {
return new Date(d.x);
}
}
yAccessor={(d)=>d.y}
xAxisTickInterval={{unit: 'year', interval: 2}}
/>
or use d3's d3.time.format
to parse string dates:
var data = {
'series 1': [
{ x: '2014-07-10', y: 1.2 },
...additional data....
{ x: '2014-10-15', y: 22.1 }
]
}
<LineChart
data={data}
xAccessor={(d)=> {
var formatter = d3.time.format("%Y-%m-%d").parse;
return formatter(d.x);
}
}
yAccessor={(d)=>d.y}
xAxisTickInterval={{unit: 'year', interval: 2}}
/>
- Issues: react-d3 issues on Github
- Support: react-d3 Google Groups email list