我正在使用Javascript(Meteor)并尝试使用向下钻取来实现Highchart。在彻底测试逻辑部分的正确性之后,我已经验证传递到我的Highchart的数据是正确的。但是,我收到错误#13,因为我在图表的“chart:”选项中设置“renderTo:”字段的方式似乎有问题,目前看起来像这样:
return chart = {
chart: {
renderTo: 'chart',
type: 'bar'
},
//other fields
在HTML文件中,我使用此模板并在正文中调用它:
<template name= "myTemplate">
{{> highchartsHelper chartId="chart" chartWidth="100%" charHeight="100%" chartObject=topGenresChart}}
</template>
<body>
//other stuff
{{> myTemplate}}
</body>