-
22 Nov 2012 4:29 AM #1
Unanswered: Is it possible to create sencha chart in loop?
Unanswered: Is it possible to create sencha chart in loop?
Hi I have to create n number of charts.
Can I do like below?
It is creating chart(as I can see from debugger)Code:var data = Ext.decode(response.responseText); var count = data.data.length; for (var i=0;i<count;i++) { rec = data.data[i]; myGaugeChart = getGaugeChart(rec.Value, rec.Name, rec.Nr); GaugePanel.add(myGaugeChart); }
but only the first one is getting display.
Rest of the chart, the id and canvas is there but no chart.
Is this way of preparing chart is correct?
If yes, then what extra I need to do in order to render my chart correctly on the screen?Last edited by Syntona; 22 Nov 2012 at 4:32 AM. Reason: added code tag
-
24 Nov 2012 6:01 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 435
- Answers
- 3102
It all depends on the parent's layout and what getGaugeChart is returning.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote