e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
65 lines
2.1 KiB
HTML
65 lines
2.1 KiB
HTML
<html>
|
|
<head>
|
|
<title>Bar chart</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<style type="text/css">
|
|
@import "../../../dojo/resources/dojo.css";
|
|
@import "../../../dijit/tests/css/dijitTests.css";
|
|
</style>
|
|
<!--
|
|
The next line should include Microsoft's Silverligth.js, if you plan to use the silverlight backend
|
|
<script type="text/javascript" src="Silverlight.js"></script>
|
|
-->
|
|
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true"></script>
|
|
<script type="text/javascript" src="../Chart3D.js"></script>
|
|
<script type="text/javascript" src="../plot3d/Base.js"></script>
|
|
<script type="text/javascript" src="../plot3d/Bars.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
dojo.require("dojox.charting.Chart3D");
|
|
dojo.require("dojox.charting.plot3d.Bars");
|
|
|
|
makeObjects = function(){
|
|
var m = dojox.gfx3d.matrix;
|
|
var chart = new dojox.charting.Chart3D("test",
|
|
{
|
|
lights: [{direction: {x: 5, y: 5, z: -5}, color: "white"}],
|
|
ambient: {color:"white", intensity: 2},
|
|
specular: "white"
|
|
},
|
|
[m.cameraRotateXg(10), m.cameraRotateYg(-10), m.scale(0.8), m.cameraTranslate(-50, -50, 0)]
|
|
);
|
|
|
|
var plot1 = new dojox.charting.plot3d.Bars(500, 500, {gap: 10, material: "yellow"});
|
|
plot1.setData([1,2,3,2,1,2,3,4,5]);
|
|
chart.addPlot(plot1);
|
|
|
|
var plot2 = new dojox.charting.plot3d.Bars(500, 500, {gap: 10, material: "red"});
|
|
plot2.setData([2,3,4,3,2,3,4,5,5]);
|
|
chart.addPlot(plot2);
|
|
|
|
var plot3 = new dojox.charting.plot3d.Bars(500, 500, {gap: 10, material: "blue"});
|
|
plot3.setData([3,4,5,4,3,4,5,5,5]);
|
|
chart.addPlot(plot3);
|
|
|
|
chart.generate().render();
|
|
|
|
//dojo.byId("out1").value = dojo.byId("test").innerHTML;
|
|
//dojo.byId("out2").value = dojox.gfx.utils.toJson(surface, true);
|
|
};
|
|
|
|
dojo.addOnLoad(makeObjects);
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Bar chart</h1>
|
|
<div id="test" style="width: 500px; height: 500px;"></div>
|
|
<!--
|
|
<p><button onclick="makeObjects();">Go</button></p>
|
|
<p><textarea id="out1" cols="40" rows="5"></textarea></p>
|
|
<p><textarea id="out2" cols="40" rows="5"></textarea></p>
|
|
-->
|
|
<p>That's all Folks!</p>
|
|
</body>
|
|
</html>
|