diff options
Diffstat (limited to 'www/lib/Chart.js/samples/polar-area.html')
| -rw-r--r-- | www/lib/Chart.js/samples/polar-area.html | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/www/lib/Chart.js/samples/polar-area.html b/www/lib/Chart.js/samples/polar-area.html deleted file mode 100644 index d3d3f01b..00000000 --- a/www/lib/Chart.js/samples/polar-area.html +++ /dev/null @@ -1,60 +0,0 @@ -<!doctype html> -<html> - <head> - <title>Polar Area Chart</title> - <script src="../Chart.js"></script> - </head> - <body> - <div id="canvas-holder" style="width:30%"> - <canvas id="chart-area" width="300" height="300"/> - </div> - - - <script> - - var polarData = [ - { - value: 300, - color:"#F7464A", - highlight: "#FF5A5E", - label: "Red" - }, - { - value: 50, - color: "#46BFBD", - highlight: "#5AD3D1", - label: "Green" - }, - { - value: 100, - color: "#FDB45C", - highlight: "#FFC870", - label: "Yellow" - }, - { - value: 40, - color: "#949FB1", - highlight: "#A8B3C5", - label: "Grey" - }, - { - value: 120, - color: "#4D5360", - highlight: "#616774", - label: "Dark Grey" - } - - ]; - - window.onload = function(){ - var ctx = document.getElementById("chart-area").getContext("2d"); - window.myPolarArea = new Chart(ctx).PolarArea(polarData, { - responsive:true - }); - }; - - - - </script> - </body> -</html> |
