-
1 Aug 2012 2:19 PM #1
Unanswered: Add Sencha Touch Chart to Container with vbox layout
Unanswered: Add Sencha Touch Chart to Container with vbox layout
Hi,
I have a container with a vbox layout and I am trying to add a chart to the container, however, the chart does not appear in the container.
What is the correct process for adding a sencha touch chart to a container with a vbox layout?
Here is my code:
Thanks.Code:var testContainer = new Ext.Container({ layout:{ type: 'vbox', align: 'stretch' }, items:[{ xtype: 'container', flex: 1, items:[testChart] //Ext.chart.Chart with pie series }] });
-
3 Aug 2012 5:27 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,656
- Vote Rating
- 435
- Answers
- 3108
You are overnesting. The charts doesn't need to be within that container. Remove that container and just have the chart as an item (don't forget to give the chart that flex)
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.
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote