Upgrade to ExtJS 4.0.1 - Released 05/18/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  * @ignore
21  */
22 Ext.define('Ext.chart.axis.Abstract', {
23
24     /* Begin Definitions */
25
26     requires: ['Ext.chart.Chart'],
27
28     /* End Definitions */
29
30     constructor: function(config) {
31         config = config || {};
32
33         var me = this,
34             pos = config.position || 'left';
35
36         pos = pos.charAt(0).toUpperCase() + pos.substring(1);
37         //axisLabel(Top|Bottom|Right|Left)Style
38         config.label = Ext.apply(config['axisLabel' + pos + 'Style'] || {}, config.label || {});
39         config.axisTitleStyle = Ext.apply(config['axisTitle' + pos + 'Style'] || {}, config.labelTitle || {});
40         Ext.apply(me, config);
41         me.fields = [].concat(me.fields);
42         this.callParent();
43         me.labels = [];
44         me.getId();
45         me.labelGroup = me.chart.surface.getGroup(me.axisId + &quot;-labels&quot;);
46     },
47
48     alignment: null,
49     grid: false,
50     steps: 10,
51     x: 0,
52     y: 0,
53     minValue: 0,
54     maxValue: 0,
55
56     getId: function() {
57         return this.axisId || (this.axisId = Ext.id(null, 'ext-axis-'));
58     },
59
60     /*
61       Called to process a view i.e to make aggregation and filtering over
62       a store creating a substore to be used to render the axis. Since many axes
63       may do different things on the data and we want the final result of all these
64       operations to be rendered we need to call processView on all axes before drawing
65       them.
66     */
67     processView: Ext.emptyFn,
68
69     drawAxis: Ext.emptyFn,
70     addDisplayAndLabels: Ext.emptyFn
71 });
72 </pre>
73 </body>
74 </html>