I'm using a simple data store that generates random data. I would like to refresh my line chart with this data, but so far had no success in this. I have tried:
Ext.getStore('mystore').load();
But nothing happens on my chart at all. However, this is working:
Ext.getStore('mystore').removeAll();
Great, so I can remove all the data from the chart. But how can I load it again and refresh the chart?