Browse Source

Update sample for region

pull/232/merge
Masayuki Tanaka 11 years ago
parent
commit
124cd7dbae
  1. 16
      htdocs/samples/regions.html

16
htdocs/samples/regions.html

@ -33,7 +33,6 @@
} }
}); });
/*
setTimeout(function () { setTimeout(function () {
chart.load({ chart.load({
columns: [ columns: [
@ -41,7 +40,20 @@
] ]
}); });
}, 1000); }, 1000);
*/
setTimeout(function () {
chart.regions([]);
}, 2000);
setTimeout(function () {
chart.regions([{start:0.5,end:2.5}]);
}, 3000);
setTimeout(function () {
chart.regions.add([{start:4.5}]);
}, 4000);
</script> </script>
</body> </body>
</html> </html>

Loading…
Cancel
Save