highcharts中數據列點擊事件

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 + ' 被點擊了\n' +
						'最近點:' + event.point.category + '\n' +  
						'Alt 鍵: ' + event.altKey + '\n' +
						'Ctrl 鍵: ' + event.ctrlKey + '\n' +
						'Meta 鍵(win 鍵): ' + 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]
	}]
});

  

相關文章
相關標籤/搜索