I\'m trying to make a graph with Charts.js (current one is just a really simple example I\'m trying to get working, somewhat taken from the Chart.js documentation) and the g
Make a div element and place the chart canvas inside of it, name it as canvas-holder. See below:
Using CSS, specify the height and width of the canvas holder
#canvas-holder { background-color: #FFFFFF; position: absolute; width: 400px; height: 400px; }