3

是否可以使用 Flot 水平条形图更改悬停时条形的颜色

4

1 回答 1

5

这通过设置“highlightColor”字段对我有用:

$.plot("#placeholder", [data], {
    series: {
        bars: {
            show: true,
            align: 'center',
            barWidth: .6,
            horizontal: true
        },
        highlightColor: 'rgb(190,232,216)'
    },
    grid: {
        hoverable: true
    }
});

有关工作示例,请参见此小提琴。

于 2013-08-23T17:26:54.040 回答