diff options
| author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 | 
|---|---|---|
| committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 | 
| commit | e44a7e37b6c7b5961adaffc62b9042b8d442938e (patch) | |
| tree | 95b67c356e93163467db2451f2b8cce84ed5d582 /includes/js/dojox/charting/tests/test_widget2d.html | |
| parent | a62b9742ee5e28bcec6872d88f50f25b820914f6 (diff) | |
| download | semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.gz semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.bz2 | |
New feature: basic Ajax suggestion for tags and implementation of Dojo toolkit
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/charting/tests/test_widget2d.html')
| -rw-r--r-- | includes/js/dojox/charting/tests/test_widget2d.html | 98 | 
1 files changed, 98 insertions, 0 deletions
| diff --git a/includes/js/dojox/charting/tests/test_widget2d.html b/includes/js/dojox/charting/tests/test_widget2d.html new file mode 100644 index 0000000..f97719f --- /dev/null +++ b/includes/js/dojox/charting/tests/test_widget2d.html @@ -0,0 +1,98 @@ +<html> +<head> +<title>Chart 2D</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, parseOnLoad: true"></script> +<script type="text/javascript" src="../../lang/functional.js"></script> +<script type="text/javascript" src="../Theme.js"></script> +<script type="text/javascript" src="../scaler.js"></script> +<script type="text/javascript" src="../Chart2D.js"></script> +<script type="text/javascript" src="../widget/Chart2D.js"></script> + +<script type="text/javascript"> +	dojo.require("dojox.charting.widget.Chart2D"); +	dojo.require("dojox.charting.themes.PlotKit.orange"); +	dojo.require("dojox.charting.themes.PlotKit.blue"); +	dojo.require("dojox.charting.themes.PlotKit.green"); +	dojo.require("dojox.data.HtmlStore"); +	 +	seriesB = [2.6, 1.8, 2, 1, 1.4, 0.7, 2]; +	 +	dojo.require("dojo.parser");	// scan page for widgets and instantiate them +</script> + +</head> +<body> +<h1>Chart 2D</h1> +<p>Examples of charts using widgets.</p> +<div dojoType="dojox.data.HtmlStore" dataId="tableExample" jsId="tableStore"></div> +<table id="tableExample" style="display: none;"> +	<thead> +		<tr><th>value</th></tr> +	</thead> +	<tbody> +		<tr><td>6.3</td></tr> +		<tr><td>1.8</td></tr> +		<tr><td>3  </td></tr> +		<tr><td>0.5</td></tr> +		<tr><td>4.4</td></tr> +		<tr><td>2.7</td></tr> +		<tr><td>2  </td></tr> +	</tbody> +</table> +<table border="0" cellspacing="30"> +	<tr> +		<td> +			<div dojoType="dojox.charting.widget.Chart2D" style="width: 300px; height: 300px;"> +				<div class="axis" name="x" font="italic normal normal 8pt Tahoma"></div> +				<div class="axis" name="y" vertical="true" fixUpper="major" includeZero="true"  +					font="italic normal normal 8pt Tahoma"></div> +				<div class="plot" name="default" type="Areas"></div> +				<div class="plot" name="grid" type="Grid"></div> +				<div class="series" name="Series A" data="1, 2, 0.5, 1.5, 1, 2.8, 0.4"></div> +				<div class="series" name="Series B" array="seriesB"></div> +				<div class="series" name="Series C" store="tableStore" valueFn="Number(x)"></div> +			</div> +		</td> +		<td> +			<div dojoType="dojox.charting.widget.Chart2D" theme="dojox.charting.themes.PlotKit.orange"  +					fill="'lightgrey'" style="width: 300px; height: 300px;"> +				<div class="axis" name="x" font="italic normal bold 10pt Tahoma"></div> +				<div class="axis" name="y" vertical="true" fixUpper="major" includeZero="true"  +					font="italic normal bold 10pt Tahoma"></div> +				<div class="plot" name="default" type="Areas"></div> +				<div class="plot" name="grid" type="Grid"></div> +				<div class="series" name="Series A" data="1, 2, 0.5, 1.5, 1, 2.8, 0.4"></div> +				<div class="series" name="Series B" array="seriesB"></div> +				<div class="series" name="Series C" store="tableStore" valueFn="Number(x)" stroke="'#666666'" fill="'#b3b3b3'"></div> +			</div> +		</td> +	</tr> +	<tr> +		<td> +			<div dojoType="dojox.charting.widget.Chart2D" theme="dojox.charting.themes.PlotKit.blue" +					 style="width: 300px; height: 300px;"> +				<div class="plot" name="default" type="Pie" radius="100" fontColor="white"></div> +				<div class="series" name="Series B" array="seriesB"></div> +			</div> +		</td> +		<td> +			<div dojoType="dojox.charting.widget.Chart2D" theme="dojox.charting.themes.PlotKit.green" +					 style="width: 300px; height: 300px;"> +				<div class="plot" name="default" type="Pie" radius="100" fontColor="black" labelOffset="-20"></div> +				<div class="series" name="Series C" store="tableStore" valueFn="Number(x)"></div> +			</div> +		</td> +	</tr> +</table> +<p>That's all Folks!</p> +</body> +</html> | 
