最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Highlighting Highcharts series from a remote element - Stack Overflow

programmeradmin2浏览0评论

I'm trying to figure out how to highlight a line (series) in Highcharts from an element that's not related to the Chart object in any way.

I went through the documentation, and don't really see a way of achieving this. I can get into the series elements using the series.get(id).

Seems like there are no methods that can be helpful -

Any ideas if that's even possible?

I'm trying to figure out how to highlight a line (series) in Highcharts from an element that's not related to the Chart object in any way.

I went through the documentation, and don't really see a way of achieving this. I can get into the series elements using the series.get(id).

Seems like there are no methods that can be helpful - http://www.highcharts./ref/#series-object

Any ideas if that's even possible?

Share Improve this question asked Jan 10, 2012 at 20:30 Oskar KrawczykOskar Krawczyk 3,50319 silver badges20 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

After a lot of digging and testing, I've managed to get this working - still not sure if this is the best way (probably not).

Chart.series.get(someId).graph.attr('stroke-width', '5')

Unfortunately, this is just getting into the actual DOM element and changing the value of the property of a single element, so if you need to change the stroke width, and the styles of the markers on this line, you'd have to loop through all elements, and apply changes manually.

UPDATE: Ok, there's a better way

But this is using the private API, so if the library changes thins, your code will not work:

Chart.series.get(someId).onMouseOver() and Chart.series.get(someId).onMouseOut().

This actually fires the defined hover-state.

发布评论

评论列表(0)

  1. 暂无评论