Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / docs / source / Abstract.html
1 <!DOCTYPE html><html><head><title>Sencha Documentation Project</title><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../prettify.css" type="text/css"><link rel="stylesheet" href="../prettify_sa.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script></head><body onload="prettyPrint()"><pre class="prettyprint"><pre><span id='Ext-chart.axis.Abstract'>/**
2 </span> * @class Ext.chart.axis.Abstract
3  * @ignore
4  */
5 Ext.define('Ext.chart.axis.Abstract', {
6
7     /* Begin Definitions */
8
9     requires: ['Ext.chart.Chart'],
10
11     /* End Definitions */
12
13     constructor: function(config) {
14         config = config || {};
15
16         var me = this,
17             pos = config.position || 'left';
18
19         pos = pos.charAt(0).toUpperCase() + pos.substring(1);
20         //axisLabel(Top|Bottom|Right|Left)Style
21         config.label = Ext.apply(config['axisLabel' + pos + 'Style'] || {}, config.label || {});
22         config.axisTitleStyle = Ext.apply(config['axisTitle' + pos + 'Style'] || {}, config.labelTitle || {});
23         Ext.apply(me, config);
24         me.fields = [].concat(me.fields);
25         this.callParent();
26         me.labels = [];
27         me.getId();
28         me.labelGroup = me.chart.surface.getGroup(me.axisId + &quot;-labels&quot;);
29     },
30
31     alignment: null,
32     grid: false,
33     steps: 10,
34     x: 0,
35     y: 0,
36     minValue: 0,
37     maxValue: 0,
38
39     getId: function() {
40         return this.axisId || (this.axisId = Ext.id(null, 'ext-axis-'));
41     },
42
43     /*
44       Called to process a view i.e to make aggregation and filtering over
45       a store creating a substore to be used to render the axis. Since many axes
46       may do different things on the data and we want the final result of all these
47       operations to be rendered we need to call processView on all axes before drawing
48       them.
49     */
50     processView: Ext.emptyFn,
51
52     drawAxis: Ext.emptyFn,
53     addDisplayAndLabels: Ext.emptyFn
54 });
55 </pre></pre></body></html>