react-chartjs
react-chartjs copied to clipboard
common react charting components using chart.js
I am getting this error while setting up **react-chartjs**, i am using example given [here ](https://www.npmjs.com/package/react-chartjs). This is the error i am getting: ``` Uncaught (in promise) TypeError: Cannot read...
I am using the implementation in reactJs component and I am not understanding how I can write the custom label inside donuts chart. I am not able to found any...
Browser: Internet Explorer 11.0.9600.18792, Update Versions: 11.0.46 Operating system: Windows 7 Professional Service Pack 1 64 bits This code works correctly on Chrome and Firefox latest build but not on...
Here is my code, `let chartData = { labels: ["January", "February", "March", "April", "May", "June", "July"], datasets: [ { label: "My First dataset", fillColor: "rgba(220,220,220,0.2)", strokeColor: "rgba(220,220,220,1)", pointColor: "rgba(220,220,220,1)", pointStrokeColor:...
I got a problem here. When i change the state, my program re-render and get the new data, but the data at the chart didn't change at all.
Hi, This may totally be a problem with my code as I've not worked before w/ the library. I have a radar chart within a class that I'm using (...
Anyone have any idea why my chart doesn't render initially, but if I update the component using the react-hot-loader (webpack), things redraw. This is my component: I tried throwing on...
Hi there, I'm working on a dashboard project and find that react-chartjs does not support stream chart which chart.js does by addData() and removeData(). So I just added couple lines...
Using the following dataset to create a grouped bar chart results in a "Cannot read property 'bars' of undefined" error in core.js line 132. ``` var correctSet = { labels:...
`handleOnClick(event) { console.log(this.refs.lineChart.getPointsAtEvent(event)); }` As title states, this console log always returns empty array even though graph is showing a lot of data.