Anycharts 6.2.0 - " TypeError:this.b.getSVG不是函数"

时间:2016-06-09 08:15:39

标签: javascript svg anychart

Anycharts 6.2.0在这里。我正在尝试实施getSVG()功能,所以我做了一个小测试,非常类似于在线文档中显示的测试:

  <script type="text/javascript" language="javascript">
      var chart = null ;
      // HTML5 chart
      AnyChart.renderingType = anychart.RenderingType.SVG_ONLY;
      chart = new AnyChart() ;
      if (chart!=null) {
        chart.width = '100%' ;
        chart.height = '100%';
        chart.wMode = 'transparent' ;
        chart.useBrowserResize = true ;
        chart.setXMLFile(xmlFile);
        chart.write("sepChartContainer");
        alert(chart.getSVG(true)) ;
      }
  </script>

但是在浏览器Web控制台上我收到了这个错误:

TypeError: this.b.getSVG is not a function

我做错了什么?

0 个答案:

没有答案