How to start with sencha touch 2.0 chart beta? - sencha-touch-2

I need to know how i can make a column chart with the sencha touch chart 2.0, the documentation is the same as 1.0 and i know that chart 1 and 2 are incompatible.
How i can make a view with a chart?
Thanks.

Now the touch charts 2 beta is available to download, you can start it from the build-in examples and demos.
Touch Chart beta 2

Related

New Xcode 6 project looks not full screen on iPhone 5

Could you please tell me why a brand new project created in Xcode 6 looks with two black bars from top and bottom of the screen on iPhone with 4-inch display ios 7?
As described in comments, the solution is to add a LaunchScreen.xib and setting it as Launch Screen File in project's settings.
You might want to take a look to Size Classes.
Or just disable size classes.

How to auto adjust the components for Sencha Touch 2 application

am new to Sencha Touch 2 framework. am creating a project using Sencha Architect in that you have the option to select a device to display your views. Devices include ipad, iphone 4 and 5, Blackberry etc etc. Am creating a project as per view in iphone (320 * 480 ). My question is when i view the project in ipad simulator the components of my view screen do not adjust automatically. I want to run my project on iphone,ipad,blackberry or any android phone or tab. How can i achieve this independence so that my components on screen could adjust length, height etc etc properties at their own. Is there any way to do this by using Sencha Architect ?
Depending on your app architecture, you could probably use a fit layout. However, the best would be to implement profiles, take a look at:
http://docs.sencha.com/touch/2.2.1/#!/guide/profiles

creating thumbnailview for photo gallery in sencha

I am trying to create a photo gallery using Sencha Architect. On first screen I want to display image thumbnails displaying 4 images wide row.
Screen 2 will display a selected image, with name and image number ., say -3 of 10 at top.
I searched for a this on Google but not able to find any sample code or documention.
Is there any any sample code or doc available?
I need help in designing this code.
Thanks.
You can get some ideas from touchstyle example which comes with sencha touch library or have a look at this http://www.touchstyle.mobi/app/

Capture image through Sencha Application 2.1 without using Phonegap

I want to capture a photo from my SenchaTouch 2.1 application and want to display on the view.
I don't want to use Phone Gap just want to access the camera through my Sencha Application. Kindly share some code that will suffice the above mentioned need Or some suggestions it will be really helpful.
Thanks
Have you looked at the Sencha Touch API docs, for the Ext.device.Camera class?
http://docs.sencha.com/touch/2-1/#!/api/Ext.device.Camera

How do I position in mono for android?

Hello i am new to Mono for android. I am trying to make a Calculator, in a normal windows forms application.
I can Drag a button or textbox to any position I want but how does that work in Mono for android, I want the buttons next to each other not only downwards. If I place buttons under eachother that go out of the framework I dont want that either..
I am not English il hope you will understand.
please help.
Android "supports", but has deprecated and doesn't endorse, pixel-perfect layout. Unfortunately the Windows Forms-style of dragging and dropping controls onto a design surface at specific pixel locations requires pixel perfect layout, so you can see the mismatch here.
For a Calculator, what you would instead want to do use a Table Layout or some other "resizable" container, so that your Activity can support the variety of device sizes that Android covers.