react-chartjs-2
react-chartjs-2 copied to clipboard
Bar chart renders half of the data only
The bar chart renders only half the data. renders only even number indexed. (0, 2, 4, 6). Is this a bug ? Any advice to the problem
Can you post an example of the data being passed in so this issue can be recreated?
I had the same issue but I managed to fix it with this option: options={{ maintainAspectRatio: false }}
e.g.
<Line data={this.state} options={{ maintainAspectRatio: false }} />;