sample skeleton application with dojo toolkit & arcgis js api v 4.30
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
1.1 KiB

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Bullet Graph</title>
<style type="text/css">
@import "../../../dojo/resources/dojo.css";
@import "../../../dijit/themes/claro/claro.css";
@import "style.css";
</style>
<script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="parseOnLoad: true, async: true">
</script>
<script type="text/javascript">
require(["dojo/_base/kernel", "dojo/parser", "dijit/layout/BorderContainer", "dijit/layout/ContentPane",
"dojox/dgauges/tests/gauges/BulletGraph"]);
</script>
</head>
<body class="claro">
<div data-dojo-type="dijit.layout.BorderContainer" gutters="true" liveSplitters="true" id="borderContainer">
<div data-dojo-type="dijit.layout.ContentPane" style="background-color: #fafafa;" splitter="true" region="center">
<div id="g1" data-dojo-type="dojox.dgauges.tests.gauges.BulletGraph" style="height:60px"></div>
<div id="g2" data-dojo-type="dojox.dgauges.tests.gauges.BulletGraph" style="height:60px" value="270" target="260" low="200" medium="250" high="300"></div>
</div>
</div>
</body>
</html>