1
votes

I see simple example from demos:

http://dev.sencha.com/deploy/ext-4.0.0/examples/charts/Line.html

How to highlight a line without a mouseover in chart ( analog mouse over event of this line )?

1
By "dynamically" do you mean: highlight a line without a mouseover? Or are you just trying to achieve the same effect shown in the link?egerardus

1 Answers

2
votes

Browse to that example and in the browser's javascript console write the following:

chart = Ext.ComponentQuery.query('.chart')[0];
serie = chart.series.items[0]; 
serie.highlightItem();

This is how it looks:

enter image description here