Hi,
The charts are working fine on phone now. I had missed a line in the view page. :(
But the pie chart appears too small on phone. How can I resize it?
Type: Posts; User: Jsri
Hi,
The charts are working fine on phone now. I had missed a line in the view page. :(
But the pie chart appears too small on phone. How can I resize it?
Hi,
My chart code similar to Energyapp example is working correctly on iPad. But not on iPhone and android phone. Do you know what can be the reason for this? The chart is not getting displayed on...
Hi,
Im using Sencha 2.1 with phoneGap.
My issue is similar. The charts appear zoomed out in portrait mode and looks perfect in landscape mode in iPad.
Do you know the solution for this?
...
I'm using sencha 2.1 along with phoneGap 2.0 to run a chart app. It is working fine on iPad emulator but not on iPhone emulator.
The navigation is displayed but the charts are not. The chart i'm...
I have not got the response yet. For how long is your office closed?
I've attached the screenshot.
Only the navigation appears but not the charts :(
Hi,
I'm facing similar issue.
the charts are not visible on Android phone & iPhone. on iPad, its getting displayed, But the size is too big n therefore x-axis of the line chart isn't visible. Do...
Hi,
I'm using Sencha 2.1 GPL
I've replicated EneryApp chart in my chart code. It is working fine on the browser.
But on iPhone it displays only the navigation.(Charts are not displayed)
On...
Hi,
I have developed a code in line with the energy app chart example. It is working fine in the iPad but not in the iPhone.
Can someone suggest what changes needs to be made?
Thanks in...
Hi Mitchell,
I mailed to [email protected] as well. Din't get any response.
- Jsri
Hi,
I want to know if we can have values in the store with a for loop such that everytime I press the refresh button, the values are updated. Say for example if I'm using a chart, I need to get...
I'm using the example of Pie chart from kitchen sink.
When I declare it as xtype and call it in Main, I get only the refresh button. The contents are not displayed :(
Main page
iconCls:...
Hi,
When I call the column chart view page directly on launch, it is working fine.
But when I call it through the Main page by making the view page as an xtype, it isn't working.
Can anyone...
Hi,
I've been using Sencha Commercial 2.0 in my application and I would like to use the charting options.
I've mailed to [email protected] but have not got any response.
I want to know the...
I've included the below code in the form :
var values = JSON.stringify(formPanel.getValues(), null, 100);
Ext.Msg.alert('Form Values', values)
store.load();
Ext.getStore('Store1').add(values);...
Hi,
How can one view the data that is dynamically loaded into the Store?
I tried alert. It dint work,
Here is the code
var formPanel = Ext.create('Ext.form.Panel', {
fullscreen: true,
Hi,
I loaded the Store with the field values from a form.
I checked using alert if the values are getting fetched. It is working.
But when I load them to the store, I can't see the values in...
I need to show a panel beside a text box when I tap on an image (inside "Ext.dataview.Dataview"). The first time it loads fine, but when I go to the next page and come back to the same page, I see...
Im getting the values when I used the alert.
But I'm not sure if it is going to the Store. How can one check that?
Ive used the following code:
var values= JSON.stringify(formPanel.getValues(),...
Hi,
I'm getting the values. But I'm not able to save it in the store.
Ive used the following code:
var values= form.getValues();
store.add(values);
I got the solution.
REPLACE
alert(form.getValues())
WITH
Ext.Msg.alert('FormValues', JSON.stringify(form.getValues(), null, 100 ));
Check the requirements section in the following link:
http://docs.sencha.com/touch/2-0/#!/guide/command
Hope you've installed sencha cmd instead of the Sencha SDK tools.
I've not done...
Hi,
I'm trying to load the Store with the values from the form (vales from the texfield acts as input)
Here is my code
var form = Ext.create('Ext.form.Panel', {
fullscreen: true,
...
I found the examples to populate the form with Store data values.
Is there any example where it is done the other way round? i.e.: Populate the values from the form to the Store.
Hi,
Can some1 please give a tip on how to create a dynamic chart wherein we enter the values and the corresponding charts get created. :-?