From 124cd7dbaeab115081cd7e73a68616b08b2f0ee3 Mon Sep 17 00:00:00 2001 From: Masayuki Tanaka Date: Fri, 9 May 2014 13:22:44 +0900 Subject: [PATCH] Update sample for region --- htdocs/samples/regions.html | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/htdocs/samples/regions.html b/htdocs/samples/regions.html index 85c9745..27e6244 100644 --- a/htdocs/samples/regions.html +++ b/htdocs/samples/regions.html @@ -33,7 +33,6 @@ } }); -/* setTimeout(function () { chart.load({ columns: [ @@ -41,7 +40,20 @@ ] }); }, 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); + +