admin管理员组文章数量:1343332
If the range-selector is set to true, the manual zooming with the mouse is off. I would like to have both. Is it possible to use both range-selector and manual zooming with the mouse with the dygraphs library? How does this work?
Regards, Wolfgang
If the range-selector is set to true, the manual zooming with the mouse is off. I would like to have both. Is it possible to use both range-selector and manual zooming with the mouse with the dygraphs library? How does this work?
Regards, Wolfgang
Share asked Jan 9, 2016 at 15:44 Wolfgang MeinckeWolfgang Meincke 931 silver badge5 bronze badges1 Answer
Reset to default 16When you set the showRangeSelector
option, it changes the interaction model for the main chart so that drag=pan. If you don't want this, you can reset it to the default (drag=zoom) explicitly:
new Dygraph(div, data, {
showRangeSelector: true,
interactionModel: Dygraph.defaultInteractionModel
});
Here's a full fiddle.
本文标签: javascriptDygraphs How to use both rangeselector and manual zoomingStack Overflow
版权声明:本文标题:javascript - Dygraphs: How to use both range-selector and manual zooming - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743679821a2520936.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论