Browse Source

Update sample for zoom callback

pull/631/head
Masayuki Tanaka 10 years ago
parent
commit
2a4ad296d1
  1. 10
      htdocs/samples/zoom.html

10
htdocs/samples/zoom.html

@ -23,7 +23,15 @@
default: [30, 60] default: [30, 60]
} }
}, },
zoom: { enabled: true }, zoom: {
enabled: true,
onzoomstart: function (event) {
console.log("onzoomstart", event);
},
onzoomend: function (domain) {
console.log("onzoomend", domain);
},
},
subchart: { show: true } subchart: { show: true }
}); });

Loading…
Cancel
Save