Line now draws

This commit is contained in:
Tanner Linsley 2015-06-15 16:19:56 -06:00
parent 872c9d5ebb
commit 9f9237905a
3 changed files with 1313 additions and 638 deletions

1938
Chart.js vendored

File diff suppressed because one or more lines are too long

10
Chart.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -28,6 +28,7 @@
};
var config = {
type: 'line',
data: {
labels: ["January", "February", "March", "April", "May", "June", "July"],
datasets: [{
@ -64,7 +65,7 @@
window.onload = function() {
var ctx = document.getElementById("canvas").getContext("2d");
window.myLine = new Chart(ctx).Line(config);
window.myLine = new Chart(ctx, config);
};
$('#randomizeData').click(function() {