I am using React and want to tie it in with Chart.js.
The graph below works, but I am not sure how to make a Graph component in React.
My Chart.js code looks like the following:
JavaScript
x
17
17
1
var ctx = document.getElementById("myChart");
2
var myChart = new Chart(ctx, {
3
type: 'bar',
4
data: {
5
labels: ["Red", "Blue", "Yellow"],
6
datasets: [{
7
label: '# of Likes',
8
data: [12, 19, 3],
9
backgroundColor: [
10
'rgba(255, 99, 132, 0.2)',
11
'rgba(54, 162, 235, 0.2)',
12
'rgba(255, 206, 86, 0.2)'
13
]
14
}]
15
}
16
});
17
JavaScript
1
3
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.4/Chart.bundle.min.js"></script>
2
<canvas id="myChart" width="400" height="400"></canvas>
3
I then tried to incorporate this into React. Unfortunately, this didn’t work.
My code attempt can be seen here.This is kind of working, but not really, and I have no idea what approach to take.
JavaScript
1
22
22
1
var Graph = React.createClass({
2
3
render: function() {
4
var ctx = document.getElementById("myChart");
5
var myChart = new Chart(ctx, {
6
type: 'bar',
7
data: {
8
labels: ["Red", "Blue", "Yellow"],
9
datasets: [{
10
label: '# of Likes',
11
data: [12, 19, 3],
12
backgroundColor: [
13
'rgba(255, 99, 132, 0.2)',
14
'rgba(54, 162, 235, 0.2)',
15
'rgba(255, 206, 86, 0.2)'
16
]
17
}]
18
}
19
});
20
}
21
})
22
Advertisement
Answer
There is a React wrapper around ChartJS available from ReactJS organisation on GitHub. It does support bar charts. Maybe try this (if not as a solution, then as a source of inspiration)