react-chartjs icon indicating copy to clipboard operation
react-chartjs copied to clipboard

common react charting components using chart.js

Results 73 react-chartjs issues
Sort by recently updated
recently updated
newest added

Is it possible to register a chart.js plugin when using the 'v2' branch? How can it be done? I am trying to add some labels to a doughnut chart (directly...

Hey I'm using v1.1.1 and having trouble using the properties in the documentation with es6 and jsx. `var BarChart = require('react-chartjs').Bar;` If I do horizontalBar or set the type in...

How can i do [gradient in LineChart like this](http://jsfiddle.net/4vobe59a/) using react-chartjs? As I think, I need to reach DOM element canvas, add gradient, then pass it in data object (datasets...

Hi, I have created the DoughnutWithTextInside this will set centered text within the doughnut. Right now it set a percentage, this is what i needed for my project. Perhaps you...

Hi, I'm having trouble getting this working in my project, and I'm hoping I'm missing something obvious. When I include the `dist` folder in my React/Reduc project, and open a...

When I change the data in the it renders and shows the updated data but the tooltip labels are wrong...they're always showing the first x-axis label: http://stackoverflow.com/questions/35447775/why-are-the-chartjs-tooltip-labels-always-showing-the-first-x-axis-label Setting redraw to...

help wanted

Negative values don't display correctly in bar charts. ![bar-chart-broken-negative](https://cloud.githubusercontent.com/assets/532643/14303781/69d2e988-fbf0-11e5-8c27-550118012841.png)

The issue is in the updatePoints function in Core.js. This bug has already been fixed in the master branch of the project in issue #17. What is the ETA for...

bug

Something really strange is happening when I try to build data dynamically for a DoughnutChart. Consider the following render function: ``` render: function(){ var piedata = []; var x =...

When I add new data for Doughnut chart, the value changes but not the label or color. Checking the code, it seems like the only change is value ``` if...