0

我正在使用包含50 多行数据和 3 个不同系列的 Highcharts 柱形图 ( http://www.highcharts.com/demo/column-basic )。由于这个数量和图表宽度的限制,x 轴标签靠得很近并且成束。

当用户将鼠标悬停在图表中的点/列上时,我想加粗或更改 x 轴标签的颜色。我知道您可以将事件绑定到每个点(http://api.highcharts.com/highcharts#plotOptions.column.point.events),但我无法将任何样式更改链接到 x 轴标签由此。这是一个 jsFiddle ( http://bit.ly/SpPvCW ),其中包括该事件。代码块如下所示:

plotOptions: {
        series: {
            point: {
                events: {
                    mouseOver: function() {
                        $reporting.html('x: '+ this.x +', y: '+ this.y);
                    }
                }
            },
            events: {
                mouseOut: function() {                        
                    $reporting.empty();
                }
            }
        }
}

这个 jsFiddle ( http://jsfiddle.net/4h7DW/1/ ) 包括一个柱形图,其中 x 轴标签被旋转。

xAxis: {
            labels: {
                rotation: -70,
                align: 'right',
                style: {
                    fontSize: '10px',
                    color:'#999',
                    fontFamily: 'Verdana, sans-serif'
                }
            }
},

同样,目标是在悬停相关列/点时加粗或更改 x 轴标签的颜色。

4

2 回答 2

5

这是我刚刚创建的一个快速示例。我累了,还可以改进。它通过点索引将轴标签链接到鼠标悬停:

          series: {
                point: {
                    events: {
                        mouseOver: function() {
                           $(this.series.chart.xAxis[0].labelGroup.element.childNodes[this.x]).css('fill', 'black');
                        },
                        mouseOut: function() {                       
                             $(this.series.chart.xAxis[0].labelGroup.element.childNodes[this.x]).css('fill', '#999999');
                        }
                    }
                }
            }

在这里拉小提琴。

于 2013-06-18T02:17:54.427 回答
2

替代解决方案:使用 HTML 参数,然后使用 jquery 在 DOM 中查找 elemetn。

http://jsfiddle.net/uPBvH/2/

series: {
                point: {
                    events: {
                        mouseOver: function() {                 $('.highcharts-axis-labels span').eq(this.x).addClass('active');
                        },
                        mouseOut: function() {                       
  $('.highcharts-axis-labels span').eq(this.x).removeClass('active');                        
                        }
                    }
                }
            }
于 2013-06-18T09:41:37.220 回答