我希望能够设置箱线图系列的填充颜色,然后在某些状态下覆盖该颜色(悬停并选择)。
问题是,每当我设置默认的填充颜色时,悬停和选择状态不再起作用,并且只使用默认的填充颜色。
如果没有设置默认的填充颜色,那么状态填充颜色也不起作用(我猜是因为它们依赖于已经设置为工作的填充颜色属性)。
但是,如果我将默认的 fillColor 设置为像“#fsdfrw4jh432”这样的无效设置,那么它“排序”就可以了。也就是说,状态现在起作用了。
请参阅此 jsfiddle 以了解我的意思:http: //jsfiddle.net/wiseguy205/b3CuF/1/
正如您从该 jsfiddle 中看到的那样,悬停和选择状态有效,尽管填充颜色以黑色开始,因为它是无效的颜色代码。如果您将颜色代码更改为正确的颜色,则这些状态将不再起作用。
任何想法我做错了什么?
这是jsfiddle代码顺便说一句:
$(function () {
$('#container').highcharts({
chart: {
type: 'boxplot'
},
title: {
text: 'Highcharts Box Plot Example'
},
legend: {
enabled: false
},
plotOptions: {
series: {
allowPointSelect: true,
states:{
hover: {
enabled: true,
lineWidth: 5,
fillColor: '#0F0'
},
select: {
fillColor: '#F00',
enabled: 'true'
}
},
fillColor: '#00dddddF',
}
},
xAxis: {
categories: ['1', '2', '3', '4', '5'],
title: {
text: 'Experiment No.'
}
},
yAxis: {
title: {
text: 'Observations'
},
plotLines: [{
value: 932,
color: 'red',
width: 1,
label: {
text: 'Theoretical mean: 932',
align: 'center',
style: {
color: 'gray'
}
}
}]
},
series: [{
name: 'Observations',
data: [
[760, 801, 848, 895, 965],
[733, 853, 939, 980, 1080],
[714, 762, 817, 870, 918],
[724, 802, 806, 871, 950],
[834, 836, 864, 882, 910]
],
tooltip: {
headerFormat: '<em>Experiment No {point.key}</em><br/>'
}
}, {
name: 'Outlier',
color: Highcharts.getOptions().colors[0],
type: 'scatter',
data: [ // x, y positions where 0 is the first category
[0, 644],
[4, 718],
[4, 951],
[4, 969]
],
marker: {
fillColor: 'white',
lineWidth: 1,
lineColor: Highcharts.getOptions().colors[0]
},
tooltip: {
pointFormat: 'Observation: {point.y}'
}
}]
});
// the button action
$('#button').click(function() {
var selectedPoints = $('#container').highcharts().getSelectedPoints();
alert ('You selected '+ selectedPoints.length +' points');
});
});