UNPKG

dojox

Version:

Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.

167 lines (155 loc) 5 kB
<!--[if IE 7]> <!DOCTYPE> <html lang="en"> <head> <![endif]--> <!--[if IE 8]> <!DOCTYPE> <html lang="en"> <head> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/> <![endif]--> <![if gte IE 9]> <!DOCTYPE HTML> <html lang="en"> <head> <![endif]> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Pie 2D</title> <style type="text/css"> @import "../../../../dojo/resources/dojo.css"; @import "../../../../dijit/tests/css/dijitTests.css"; </style> <script type="text/javascript" src="../../../../dojo/dojo.js" data-dojo-config="isDebug: true, has:{'dojo-bidi': true}"></script> <script type="text/javascript"> dojo.require("dojox.charting.Chart"); dojo.require("dojox.charting.plot2d.Pie"); dojo.require("dojox.charting.themes.PlotKit.blue"); dojo.require("dojox.charting.themes.PlotKit.green"); dojo.require("dojox.charting.themes.PlotKit.red"); dojo.require("dojox.charting.themes.Adobebricks"); dojo.require("dojox.charting.themes.Algae"); makeObjects = function(){ var chart1 = new dojox.charting.Chart("test1"); chart1.setTheme(dojox.charting.themes.PlotKit.blue); chart1.addPlot("default", { type: "Pie", font: "normal normal bold 12pt Tahoma", fontColor: "white", labelOffset: 40 }); chart1.addSeries("Series A", [4, 2, 1, 1]); chart1.setDir("rtl"); chart1.render(); var chart2 = new dojox.charting.Chart("test2"); chart2.setTheme(dojox.charting.themes.PlotKit.blue); chart2.addPlot("default", { type: "Pie", font: "normal normal bold 12pt Tahoma", fontColor: "black", labelOffset: -25, precision: 0 }); chart2.addSeries("Series A", [4, 2, 1, 1]); chart2.render(); var chart3 = new dojox.charting.Chart("test3"); chart3.setTheme(dojox.charting.themes.PlotKit.green); chart3.addPlot("default", { type: "Pie", font: "normal normal bold 10pt Tahoma", fontColor: "white", labelOffset: 25, radius: 90 }); chart3.addSeries("Series A", [4, 2, 1, 1]); chart3.render(); var chart4 = new dojox.charting.Chart("test4"); chart4.setTheme(dojox.charting.themes.PlotKit.green); chart4.addPlot("default", { type: "Pie", font: "normal normal bold 10pt Tahoma", fontColor: "black", labelOffset: -25, radius: 90 }); chart4.addSeries("Series A", [4, 2, 1, 1]); chart4.render(); var chart5 = new dojox.charting.Chart("test5"); chart5.setTheme(dojox.charting.themes.PlotKit.red); chart5.addPlot("default", { type: "Pie", font: "normal normal bold 14pt Tahoma", fontColor: "white", labelOffset: 40 }); chart5.addSeries("Series A", [{y: 4, text: "Red"}, {y: 2, text: "Green"}, {y: 1, text: "Blue"}, {y: 1, text: "Other"}]); chart5.render(); var chart6 = new dojox.charting.Chart("test6"); chart6.setTheme(dojox.charting.themes.PlotKit.red); chart6.addPlot("default", { type: "Pie", font: "normal normal bold 14pt Tahoma", fontColor: "white", labelOffset: 40, startAngle: -45 }); chart6.addSeries("Series A", [ {y: 4, text: "Red", color: "red"}, {y: 2, text: "Green", color: "green"}, {y: 1, text: "Blue", color: "blue"}, {y: 1, text: "Other", color: "white", fontColor: "black"} ]); chart6.render(); var chart7 = new dojox.charting.Chart("test7"); chart7.setTheme(dojox.charting.themes.Adobebricks); chart7.addPlot("default", { type: "Pie", font: "normal normal bold 12pt Tahoma", fontColor: "white", radius: 80 }); chart7.addSeries("Series A", [4]); chart7.render(); var chart8 = new dojox.charting.Chart("test8"); chart8.setTheme(dojox.charting.themes.Algae); chart8.addPlot("default", { type: "Pie", font: "normal normal bold 12pt Tahoma", fontColor: "white", radius: 80 }); chart8.addSeries("Series A", [ {y: -1, text: "Red", color: "red"}, {y: 5, text: "Green", color: "green"}, {y: 0, text: "Blue", color: "blue"}, {y: 0, text: "Other", color: "white", fontColor: "black"} ]); chart8.render(); }; dojo.addOnLoad(makeObjects); </script> </head> <body> <h1>Pie 2D</h1> <!--<p><button onclick="makeObjects();">Go</button></p>--> <p>1: Pie with internal labels.</p> <div id="test1" style="width: 300px; height: 300px;"></div> <p>2: Pie with external labels and precision=0.</p> <div id="test2" style="width: 300px; height: 300px;"></div> <p>3/4: Two pies with internal and external labels with a constant radius.</p> <table border="1"><tr> <td><div id="test3" style="width: 300px; height: 300px;"></div></td> <td><div id="test4" style="width: 300px; height: 300px;"></div></td> </tr></table> <p>5/6: Pie with internal custom labels and custom colors (#6 is rotated).</p> <table border="1"><tr> <td><div id="test5" style="width: 300px; height: 300px;"></div></td> <td><div id="test6" style="width: 300px; height: 300px;"></div></td> </tr></table> <p>7: Degenerated pie with 1 element.</p> <div id="test7" style="width: 200px; height: 200px;"></div> <p>8: Degenerated pie with 1 positive elements (out of 5).</p> <div id="test8" style="width: 200px; height: 200px;"></div> <p>That's all Folks!</p> </body> </html>