我有一个highcharts条形图,当我点击它时,我想加载一个自定义弹出屏幕。这是我的HTML页面,我使用angular-data-table。
<table datatable="ng" class="row-border hover">
<thead>
<tr>
<th>ID</th>
<th>Description</th>
<th>Datasource</th>
</tr>
</thead>
<tbody ng-controller="DashBoardcontroller">
<tr ng-repeat="w in dashboard.Widgets">
<td>{{w.Id}}</td>
<td>{{w.description}}</td>
<td>{{w.datasource}}</td>
</tr>
</tbody>
当我点击条形图时,我希望显示this template。我在高级图表的文档中看到了这一点:
它显示标准警报弹出窗口。我使用文档中的图表来测试它:
Highcharts.chart('container', {
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
plotOptions: {
series: {
cursor: 'pointer',
events: {
click: function (event) {
alert(
this.name + ' clicked\n' +
'Alt: ' + event.altKey + '\n' +
'Control: ' + event.ctrlKey + '\n' +
'Meta: ' + event.metaKey + '\n' +
'Shift: ' + event.shiftKey
);
}
}
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
如何将我的HTML模板加载为弹出窗口?
亲切的问候
答案 0 :(得分:0)
window.open("popupAddress?id=" + event.anyParameter);