有没有人知道如何添加
AmCharts.makeChart(“mapdiv”,{“ mouseWheelZoomEnabled ”:true });
这个例子:
jsfiddle.net/amcharts/V7Xq8/
请帮助我绝望
答案 0 :(得分:0)
如documentation mouseWheelZoomEnabled 中所述,属性是一个属性,因此您可以在创建对象后将其设置为true(即:map = new AmCharts.AmMap();)。
所以更新的代码是:
AmCharts.ready(function() {
map = new AmCharts.AmMap();
map.mouseWheelZoomEnabled = true; // add this line
map.pathToImages = "http://www.ammap.com/lib/images/";
更新的jsfiddle here。