Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / source / Abstract.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-chart-axis-Abstract'>/**
19 </span> * @class Ext.chart.axis.Abstract
20  * Base class for all axis classes.
21  */
22 Ext.define('Ext.chart.axis.Abstract', {
23
24     /* Begin Definitions */
25
26     requires: ['Ext.chart.Chart'],
27
28     /* End Definitions */
29
30 <span id='Ext-chart-axis-Abstract-method-constructor'>    /**
31 </span>     * Creates new Axis.
32      * @param {Object} config (optional) Config options.
33      */
34     constructor: function(config) {
35         config = config || {};
36
37         var me = this,
38             pos = config.position || 'left';
39
40         pos = pos.charAt(0).toUpperCase() + pos.substring(1);
41         //axisLabel(Top|Bottom|Right|Left)Style
42         config.label = Ext.apply(config['axisLabel' + pos + 'Style'] || {}, config.label || {});
43         config.axisTitleStyle = Ext.apply(config['axisTitle' + pos + 'Style'] || {}, config.labelTitle || {});
44         Ext.apply(me, config);
45         me.fields = [].concat(me.fields);
46         this.callParent();
47         me.labels = [];
48         me.getId();
49         me.labelGroup = me.chart.surface.getGroup(me.axisId + &quot;-labels&quot;);
50     },
51
52     alignment: null,
53     grid: false,
54     steps: 10,
55     x: 0,
56     y: 0,
57     minValue: 0,
58     maxValue: 0,
59
60     getId: function() {
61         return this.axisId || (this.axisId = Ext.id(null, 'ext-axis-'));
62     },
63
64     /*
65       Called to process a view i.e to make aggregation and filtering over
66       a store creating a substore to be used to render the axis. Since many axes
67       may do different things on the data and we want the final result of all these
68       operations to be rendered we need to call processView on all axes before drawing
69       them.
70     */
71     processView: Ext.emptyFn,
72
73     drawAxis: Ext.emptyFn,
74     addDisplayAndLabels: Ext.emptyFn
75 });
76 </pre>
77 </body>
78 </html>