-
25 Oct 2012 10:50 AM #11
Ah yes! That got it to work!! While playing with it a bit more, I noticed that as long as I gave it an id, I could use the original code you linked to, where it was calling
You can play with the final results on jsfiddle here.Code:var chartId = sprite.surface.id; var chart = Ext.getCmp(chartId); // this works as long as I have some id defined in the chart object, even if I'm not calling it here as I was earlier.
Thanks again!
-
25 Oct 2012 1:13 PM #12
you can now remove the id and instead, use the "this" for accessing the series directly:
Replace
chart.series.items[0].items[index]
by
this.items[index]
you can reduce the code a little by removing the lines related to chart's id. Also, using an id is considered bad practice. you can use component query instead.
-
15 Nov 2012 7:20 AM #13
Is there a way to change the chart point from a point to an image? I just want to change one of the points though. (in this instance, the last one). Not sure where to look for that info. TIA.


Reply With Quote