是否可以使用Flot水平条形图在悬停时更改条形图的颜色
解决方法:
通过设置’highlightColor’字段,这对我有用:
$.plot("#placeholder", [data], {
series: {
bars: {
show: true,
align: 'center',
barWidth: .6,
horizontal: true
},
highlightColor: 'rgb(190,232,216)'
},
grid: {
hoverable: true
}
});
有关工作示例,请参见此fiddle.