Search Type: Posts; User: philogb
Search: Search took 0.02 seconds.
-
29 Dec 2011 12:32 PM
- Replies
- 7
- Views
- 1,064
I don't see a noticeable memory performance improvement by doing this, but it would seem safer to add it.
-
14 Sep 2011 10:40 AM
Jump to post Thread: Any update chart print/export by philogb
- Replies
- 21
- Views
- 6,521
Hi All - Thanks for the feedback.
There are two ways (I know of) to do this. One is just setting a css for printing (different than the one for screen/handheld, whatever) that would hide all... -
12 Sep 2011 4:26 PM
- Replies
- 5
- Views
- 1,584
Hi - About the title styling, there's the labelTitle property that accepts an object (just like the label property for labels in the series and axes). For example:
{ type:... -
12 Sep 2011 9:54 AM
- Replies
- 3
- Views
- 1,523
This should do the trick:
var axis = chart.axes.get(1);
axis.title = 'Some Other Title';
chart.redraw(); -
12 Sep 2011 9:38 AM
Jump to post Thread: Chart tutorials by philogb
- Replies
- 4
- Views
- 3,803
I would recommend to take a look at sencha touch charts drawing and charting (the text not video).
http://www.sencha.com/learn/touch-drawing-and-charting/
Touch chart interactions:
... -
12 Sep 2011 9:12 AM
Jump to post Thread: Sench Chart Crashing in IPAD by philogb
- Replies
- 15
- Views
- 3,748
Hi - A better way to parse json data is to use JSON.parse from the JavaScript API (less memory consumption, more speed).
Another advice is that, if I understand what you're doing, you should keep... -
9 Sep 2011 10:11 AM
Jump to post Thread: compass compile error by philogb
- Replies
- 4
- Views
- 1,218
Asking our designers... Could you provide us with your Ruby and Compass versions ?
Thanks, -
6 Sep 2011 11:15 AM
Jump to post Thread: insetPadding by philogb
- Replies
- 7
- Views
- 1,251
Thanks for you answer. Remember that there are other possible solutions too, like hiding the marker, etc. I will create a ticket for this and will let you know when we have a better solution.
-
6 Sep 2011 11:12 AM
- Replies
- 1
- Views
- 825
what about setting `layout: 'fit'` to the chart configuration object, could you test if that works?
-
6 Sep 2011 11:09 AM
Jump to post Thread: Toolbars, how to remove them? by philogb
- Replies
- 6
- Views
- 1,479
How about:
Ext.setup({
onReady: function() {
<data store goes here...>
//here in the chart description object try adding `layout: 'fit'`
var... -
6 Sep 2011 11:00 AM
- Replies
- 2
- Views
- 1,462
Hi - I think that the code is wrong.
It should be either:
var priceChart = new Ext.chart.Panel({
items: {
animate: false,
store: priceStore, -
6 Sep 2011 10:56 AM
Jump to post Thread: API by philogb
- Replies
- 9
- Views
- 1,500
Hi - That should work -although is not the recommended way of doing it. Are you having troubles with that?
-
6 Sep 2011 10:50 AM
Jump to post Thread: Pie Chart demo by philogb
- Replies
- 2
- Views
- 1,470
What device and browser are you testing? what are the exact differences between the example and your code? Are you getting any console errors?
-
6 Sep 2011 10:44 AM
Jump to post Thread: Time Axis not scaling properly by philogb
- Replies
- 10
- Views
- 2,217
Working on it, will possibly be available on the next patch release. I don't have a date for this yet unfortunately. But please let me know if the workaround works for you (it will be a temporary, I...
-
6 Sep 2011 10:32 AM
- Replies
- 2
- Views
- 950
Also, within a container all the surfaces being rendered for a chart are position absolute, since they expect they parent container to be positioned relative. Could you to inspect this on the...
-
6 Sep 2011 10:31 AM
- Replies
- 2
- Views
- 950
Try adding
layout: 'fit'
for all elements in the panel, (chart, docked buttons, etc). -
6 Sep 2011 10:27 AM
Jump to post Thread: Sench Chart Crashing in IPAD by philogb
- Replies
- 15
- Views
- 3,748
We're investigating this - I will come up with an answer as soon as we find the issue. I'm not sure if this helps, but we know that memory allocated is relative to the area of the surface used. The...
-
6 Sep 2011 10:17 AM
- Replies
- 1
- Views
- 703
Hi - One thing you could try is updating the axes right after updating the chart.
chart.axes.each(function(axis) {
axis.processView();
});
chart.axes.each(function(axis) { -
6 Sep 2011 9:24 AM
Jump to post Thread: Click to add point by philogb
- Replies
- 3
- Views
- 1,110
You can add a listener to the surface of the chart, and update the store when someone clicks there, then re-render the line chart. This method would only be useful for non parametric line charts...
-
6 Sep 2011 9:14 AM
- Replies
- 14
- Views
- 3,381
Lets try to patch it. In Ext.chart.Chart (Chart.js file in chart src folder) try looking for "Methods needed for Component Query" towards the bottom of the file, and replace those methods with these:...
-
6 Sep 2011 8:41 AM
- Replies
- 10
- Views
- 3,115
Hi - Thanks for your feedback. I just logged this and we will work on it for the next release.
-
1 Sep 2011 2:50 PM
Jump to post Thread: [4.0.0] Ext.chart.axis -> title by philogb
- Replies
- 9
- Views
- 2,704
Fixed for 4.0.7. There was an Int32 casting problem. Now using Math.floor which keeps values as doubles.
-
1 Sep 2011 2:49 PM
Jump to post Thread: [4.0.0] Ext.chart.axis -> title by philogb
- Replies
- 9
- Views
- 2,704
Hi - Documentation was added for 4.0.7 on axes labels.
-
1 Sep 2011 12:07 PM
Jump to post Thread: Chart won't display by philogb
- Replies
- 2
- Views
- 754
Try instanciating the chart once the store is loaded (inside the callback function). Also, try moving the load call into Ext.onReady. That way you'll ensure the store is loaded and everything is set...
-
1 Sep 2011 12:05 PM
Jump to post Thread: Pan Chart without Zooming by philogb
- Replies
- 8
- Views
- 3,131
There's no support for panning and zooming currently in ExtJS 4 charts. We have that in our roadmap but can't really tell when we will be releasing it.
Results 1 to 25 of 116
