diff --git a/samples/polar-area.html b/samples/polar-area.html
index 51682e65b..c52dad577 100644
--- a/samples/polar-area.html
+++ b/samples/polar-area.html
@@ -1,76 +1,67 @@
-
- Polar Area Chart
-
-
-
-
-
-
-
-
+
+ Polar Area Chart
+
+
+
-
+
- window.onload = function(){
- var ctx = document.getElementById("chart-area").getContext("2d");
- window.myPolarArea = new Chart(ctx).PolarArea({
- data: polarData,
- options: {
- responsive:true
- }
- });
- };
-
- $('#randomizeData').click(function(){
- $.each(polarData, function(i, piece){
- polarData[i].value = randomScalingFactor();
- polarData[i].color = 'rgba(' + randomColorFactor() + ',' + randomColorFactor() + ',' + randomColorFactor() + ',.7)';
- });
- window.myPolarArea.update();
- });
-
-
-
-
-