我的问题是:
我想在剑道UI中有一个散点线图,在那里我既可以显示工具提示,又可以具有系列悬停效果。
演示:http://jsfiddle.net/9Lvzu9qh/2/
注释掉第 44 行: chart.redraw();
看看我的问题。如果重新绘制图表,则会清除工具提示。如果不重新绘制图表,则无法获得突出显示效果。
如何同时获得突出显示和工具提示?解决任一问题的替代方法也被接受。
我让它保存以前的id并仅在更改系列时更改颜色:
var previousId = 0;
$("#chart").kendoChart({
title: {
text: "Line demo (Kendo UI v2014.3.1119)"
},
legend: {
position: "bottom"
},
seriesDefaults: {
type: "scatterLine",
width: 2,
},
series: [{
name: "A",
data: [[0,1], [1,2], [2,3]]
},
{
name: "B",
data: [[0,2], [1,3], [2,5]]
},
{
name: "C",
data: [[0,3], [1,5], [2,2]]
}
],
seriesHover : function(e) {
var chart = e.sender;
var idx = _.findIndex(chart.options.series, function (s) {
return s === e.series;
});
if(previousId != idx)
previousId = idx;
else
return;
if (idx >= 0) {
var thisSeries = chart.options.series[idx];
// attach event to hovering over a series
// On hover, set opacity to full and increase width
// Decrease opacity and width on all other series
_.each(chart.options.series, function (s) {
s.width = 2;
s.opacity = 0.4;
});
thisSeries.width = 4;
thisSeries.opacity = 1;
$("#chart").data("kendoChart").redraw();
}
},
tooltip: {
visible: true,
format: "X: {0} Y: {1}"
},
transitions: false
});
希望对您有所帮助。
小提琴:http://jsfiddle.net/9Lvzu9qh/4/