react-stockcharts
react-stockcharts copied to clipboard
How can show all data when init the chart first time?
trafficstars
As the title, I want to show all plot of data when init the chart. Anyone used to implement it? Please help me
Any suggestion would be appreciated.
Set your xExtents like this:
const start = xAccessor(last(linearData));
const xExtents = [start, 0]