我正在 Dashing 中创建仪表板,并使用 highbar 小部件显示一些数据。我希望能够加载一个新的仪表板,显示有关您单击特定栏时单击的内容的更详细数据。我知道当您单击小部件时如何加载新仪表板,但我想为特定栏执行此操作。有任何想法吗?Dashing 的文档非常稀缺。
问问题
727 次
1 回答
1
我已经想通了。我找到了 HighCharts API Reference,它是一个很好的资源。
具体来说,如果你看这里,你会看到我正在尝试做的一个例子。基本上在 highbar.coffee 文件中,您必须包含
chart:
plotOptions:
column:
point:
events:
click: ->
location.href = 'the dashboard location you want to go to'
同样,他们提供的警报框示例中的 Javascript 代码看起来像
$(function () {
$('#container').highcharts({
chart: {
type: 'column'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
plotOptions: {
series: {
cursor: 'pointer',
point: {
events: {
click: function() {
alert ('Category: '+ this.category +', value: '+ this.y);
}
}
}
}
},
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]
}]
});
});
于 2013-10-01T16:58:08.037 回答