我正在使用Highcharts中的Stacked Column Chart。我要求点击一个图例时,图例应该是灰色的,因为默认情况下会发生这种情况,但系列/堆栈不应该被隐藏并保持颜色相同。
我尝试了这个并让系列停止隐藏使用它:
events: {
legendItemClick: function () {
return false; // <== returning false will cancel the default action
}
}
但我无法使点击的图例变灰或禁用。
以下是Fiddle Link
答案 0 :(得分:0)
您需要覆盖legendItemClick。只需根据您的要求添加颜色和切换项。
参见工作jsfiddle here
具有切换功能的是here
$(function () {
var selected = null;
$('#container').highcharts({
chart: {
type: 'column'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
plotOptions: {
series: {
events: {
legendItemClick: function(event) {
event.preventDefault()
var series = $('#container').highcharts().series[0];
series.color = "#fbfbfbf"; $('#container').highcharts().legend.colorizeItem(series, series.visible);
$.each(series.data, function(i, point) {
point.graphic.attr({
fill: '#fbfbfb'
});
});
series.redraw();
this.update({ color: '#999' }, true, false);
selected = this;
},
mouseOver: function() {
if(this != selected)
this.update({ color: '#999' }, true,false);
}
}
}
},
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]
}]
});
});
答案 1 :(得分:0)
覆盖Highcharts.Legend.prototype.setItemEvents
核心功能似乎是一个优雅的解决方案。
我删除了负责处理mouseover
和mouseout
事件的代码。然后我实现了onclick
事件的自定义行为:
(function(H) {
Highcharts.Legend.prototype.setItemEvents = function(item, legendItem, useHTML) {
// Set the events on the item group, or in case of useHTML, the item itself (#1249)
(useHTML ? legendItem : item.legendGroup).on('click', function(event) {
if (item.clicked) {
legendItem.css({
fill: 'black'
});
} else {
legendItem.css({
fill: 'gray'
});
}
item.clicked = !item.clicked;
});
};
})(Highcharts);
现场演示 http://jsfiddle.net/kkulig/kje28s4v/
文档提及有关覆盖核心功能的信息: https://www.highcharts.com/docs/extending-highcharts/extending-highcharts