这对于这里的人来说可能略显基本,但如果你能提供帮助,我会很高兴。我希望能够在单击元素时在模态窗口中打开Highchart。我该怎么办?我正在使用Meteor并且想知道这是否可以使用/ BootboxJS来实现。
答案 0 :(得分:1)
见下面的代码:
$('[data-toggle=popover]').popover({
content: "<div id='container' style='min-width: 300px;display:none;
height: 200px; margin: 0'> <div id='Austin' style='width: 300px; height:
200px;'></div></div>",
html: true
})
.click(function() {
var chart_data = getChartData();
var chart = new Highcharts.Chart( chart_data );
$('#container').show();
});
见工作fiddle here 和同样的问题answered here
答案 1 :(得分:0)
对于Highchart和BootboxJS,已经在meteor中支持它们
https://atmospherejs.com/maazalik/highcharts
https://atmospherejs.com/mizzao/bootboxjs
也许您将更多代码发布给我们以帮助您编码。