From 026611110a0b8fa3d648d2b013013906b47defc8 Mon Sep 17 00:00:00 2001 From: Tanner Linsley Date: Thu, 8 Jan 2015 10:13:14 -0700 Subject: [PATCH] Updated Samples MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Samples now include a “Randomize Data” button which utilizes the latest changes. --- samples/bar.html | 14 +++++++++++++- samples/doughnut.html | 23 ++++++++++++++++++----- samples/line.html | 14 ++++++++++++++ samples/pie.html | 24 ++++++++++++++++++------ samples/polar-area.html | 23 ++++++++++++++++++----- samples/radar.html | 25 ++++++++++++++++++------- src/Chart.Doughnut.js | 1 - src/Chart.PolarArea.js | 1 - 8 files changed, 99 insertions(+), 26 deletions(-) diff --git a/samples/bar.html b/samples/bar.html index 5bf4b5bae..c386c50fa 100644 --- a/samples/bar.html +++ b/samples/bar.html @@ -3,15 +3,17 @@ Bar Chart +
- + diff --git a/samples/doughnut.html b/samples/doughnut.html index fdf7539a8..879f72f68 100644 --- a/samples/doughnut.html +++ b/samples/doughnut.html @@ -3,6 +3,7 @@ Doughnut Chart + +
+ diff --git a/src/Chart.Doughnut.js b/src/Chart.Doughnut.js index d3786f3fb..7b819f329 100644 --- a/src/Chart.Doughnut.js +++ b/src/Chart.Doughnut.js @@ -135,7 +135,6 @@ label : segment.label }); }, this); - console.log(this.data, this.segments); } else{ // Data size changed without properly inserting, just redraw the chart this.initialize(this.data); diff --git a/src/Chart.PolarArea.js b/src/Chart.PolarArea.js index 326b5a373..bd40486c3 100644 --- a/src/Chart.PolarArea.js +++ b/src/Chart.PolarArea.js @@ -204,7 +204,6 @@ value: segment.value, }); },this); - console.log(this.data, this.segments); } else{ // Data size changed without properly inserting, just redraw the chart this.initialize(this.data); -- 2.47.2