[c3.js]如何onclick/onmouseover添加图例然后显示工具提示?
[c3.js]How to onclick/onmouseover to legend and then show tooltips?
我想单击或鼠标悬停在目标图例上并使其显示工具提示,就像我们将鼠标悬停在饼图的一部分上一样。
问题是我有这样的数据
有些数据太小,鼠标悬停难以定位
PS。我禁止单击图例以 show/hide 图表中的数据。
使用 jQuery 添加事件,如下所示...
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
defaultSeriesType: 'pie'
},
legend: {
enabled: true
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
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] ,
showInLegend: true
}]
});
// Apply events to text elements (SVG) and spans within the legend (VML + modern browsers with useHTML option).
$('.highcharts-legend text, .highcharts-legend span').each(function(index, element) {
$(element).hover(function() {
chart.tooltip.refresh(chart.series[0].data[index]);
},function() {
chart.tooltip.hide();
})
});
我想单击或鼠标悬停在目标图例上并使其显示工具提示,就像我们将鼠标悬停在饼图的一部分上一样。
问题是我有这样的数据
有些数据太小,鼠标悬停难以定位
PS。我禁止单击图例以 show/hide 图表中的数据。
使用 jQuery 添加事件,如下所示...
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
defaultSeriesType: 'pie'
},
legend: {
enabled: true
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
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] ,
showInLegend: true
}]
});
// Apply events to text elements (SVG) and spans within the legend (VML + modern browsers with useHTML option).
$('.highcharts-legend text, .highcharts-legend span').each(function(index, element) {
$(element).hover(function() {
chart.tooltip.refresh(chart.series[0].data[index]);
},function() {
chart.tooltip.hide();
})
});