When using the zoomline graph, I get a Javascript error when I try to call zoomTo() or resetChart() methods on a FusionCharts object. For example, when trying to call the zoomTo() method, Javascript console displays the error "chartObj.zoomTo is not a function". This happens with fusioncharts.js version 3.13.5-sr1 and 3.13.5. Everything works fine, though, with version 3.13.1.
Are those methods still available on in 3.13.5?
FusionCharts.ready(function(){
var chartObj = new FusionCharts({ type: 'zoomline',....});
chartObj.render();
chartObj.zoomTo(2, 10); <=== get an error
});