Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.chart.Chart.js
1 Ext.data.JsonP.Ext_chart_Chart({
2   "tagname": "class",
3   "name": "Ext.chart.Chart",
4   "doc": "<p>The Ext.chart package provides the capability to visualize data.\nEach chart binds directly to an <a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Ext.data.Store</a> enabling automatic updates of the chart.\nA chart configuration object has some overall styling options as well as an array of axes\nand series. A chart instance example could look like:</p>\n\n<pre><code>    Ext.create('Ext.chart.Chart', {\n        renderTo: Ext.getBody(),\n        width: 800,\n        height: 600,\n        animate: true,\n        store: store1,\n        shadow: true,\n        theme: 'Category1',\n        legend: {\n            position: 'right'\n        },\n        axes: [ ...some axes options... ],\n        series: [ ...some series options... ]\n    });\n  </code></pre>\n\n\n<p>In this example we set the <code>width</code> and <code>height</code> of the chart, we decide whether our series are\nanimated or not and we select a store to be bound to the chart. We also turn on shadows for all series,\nselect a color theme <code>Category1</code> for coloring the series, set the legend to the right part of the chart and\nthen tell the chart to render itself in the body element of the document. For more information about the axes and\nseries configurations please check the documentation of each series (Line, Bar, Pie, etc).</p>\n",
5   "extends": "Ext.draw.Component",
6   "mixins": [
7     "Ext.chart.theme.Theme",
8     "Ext.chart.Mask",
9     "Ext.chart.Navigation"
10   ],
11   "alternateClassNames": [
12
13   ],
14   "xtype": "chart",
15   "author": null,
16   "docauthor": null,
17   "singleton": false,
18   "private": false,
19   "cfg": [
20     {
21       "tagname": "cfg",
22       "name": "animate",
23       "member": "Ext.chart.Chart",
24       "type": "Boolean/Object",
25       "doc": "<p>(optional) true for the default animation (easing: 'ease' and duration: 500)\nor a standard animation config object to be used for default chart animations. Defaults to false.</p>\n",
26       "private": false,
27       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
28       "linenr": 69,
29       "html_filename": "Chart.html",
30       "href": "Chart.html#Ext-chart-Chart-cfg-animate",
31       "shortDoc": "(optional) true for the default animation (easing: 'ease' and duration: 500)\nor a standard animation config object to..."
32     },
33     {
34       "tagname": "cfg",
35       "name": "autoEl",
36       "member": "Ext.AbstractComponent",
37       "type": "Mixed",
38       "doc": "<p>A tag name or <a href=\"#/api/Ext.core.DomHelper\" rel=\"Ext.core.DomHelper\" class=\"docClass\">DomHelper</a> spec used to create the <a href=\"#/api/Ext.chart.Chart-method-getEl\" rel=\"Ext.chart.Chart-method-getEl\" class=\"docClass\">Element</a> which will\nencapsulate this Component.</p>\n\n\n<p>You do not normally need to specify this. For the base classes <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> and <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Ext.container.Container</a>,\nthis defaults to <b><tt>'div'</tt></b>. The more complex Sencha classes use a more complex\nDOM structure specified by their own <a href=\"#/api/Ext.chart.Chart-cfg-renderTpl\" rel=\"Ext.chart.Chart-cfg-renderTpl\" class=\"docClass\">renderTpl</a>s.</p>\n\n\n<p>This is intended to allow the developer to create application-specific utility Components encapsulated by\ndifferent DOM elements. Example usage:</p>\n\n\n<pre><code>{\n    xtype: 'component',\n    autoEl: {\n        tag: 'img',\n        src: 'http://www.example.com/example.jpg'\n    }\n}, {\n    xtype: 'component',\n    autoEl: {\n        tag: 'blockquote',\n        html: 'autoEl is cool!'\n    }\n}, {\n    xtype: 'container',\n    autoEl: 'ul',\n    cls: 'ux-unordered-list',\n    items: {\n        xtype: 'component',\n        autoEl: 'li',\n        html: 'First list item'\n    }\n}\n</code></pre>\n\n",
39       "private": false,
40       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
41       "linenr": 109,
42       "html_filename": "AbstractComponent.html",
43       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoEl",
44       "shortDoc": "A tag name or DomHelper spec used to create the Element which will\nencapsulate this Component.\n\n\nYou do not normally ..."
45     },
46     {
47       "tagname": "cfg",
48       "name": "autoRender",
49       "member": "Ext.AbstractComponent",
50       "type": "Mixed",
51       "doc": "<p>This config is intended mainly for <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> Components which may or may not be shown. Instead\nof using <a href=\"#/api/Ext.chart.Chart-cfg-renderTo\" rel=\"Ext.chart.Chart-cfg-renderTo\" class=\"docClass\">renderTo</a> in the configuration, and rendering upon construction, this allows a Component\nto render itself upon first <i><a href=\"#/api/Ext.chart.Chart-event-show\" rel=\"Ext.chart.Chart-event-show\" class=\"docClass\">show</a></i>.</p>\n\n\n<p>Specify as <code>true</code> to have this Component render to the document body upon first show.</p>\n\n\n<p>Specify as an element, or the ID of an element to have this Component render to a specific element upon first show.</p>\n\n\n<p><b>This defaults to <code>true</code> for the <a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a> class.</b></p>\n\n",
52       "private": false,
53       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
54       "linenr": 478,
55       "html_filename": "AbstractComponent.html",
56       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoRender",
57       "shortDoc": "This config is intended mainly for floating Components which may or may not be shown. Instead\nof using renderTo in th..."
58     },
59     {
60       "tagname": "cfg",
61       "name": "autoScroll",
62       "member": "Ext.Component",
63       "type": "Boolean",
64       "doc": "<p><code>true</code> to use overflow:'auto' on the components layout element and show scroll bars automatically when\nnecessary, <code>false</code> to clip any overflowing content (defaults to <code>false</code>).</p>\n",
65       "private": false,
66       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
67       "linenr": 169,
68       "html_filename": "Component.html",
69       "href": "Component.html#Ext-Component-cfg-autoScroll",
70       "shortDoc": "true to use overflow:'auto' on the components layout element and show scroll bars automatically when\nnecessary, false..."
71     },
72     {
73       "tagname": "cfg",
74       "name": "autoShow",
75       "member": "Ext.AbstractComponent",
76       "type": "Boolean",
77       "doc": "<p>True to automatically show the component upon creation.\nThis config option may only be used for <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> components or components\nthat use <a href=\"#/api/Ext.chart.Chart-cfg-autoRender\" rel=\"Ext.chart.Chart-cfg-autoRender\" class=\"docClass\">autoRender</a>. Defaults to <tt>false</tt>.</p>\n",
78       "private": false,
79       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
80       "linenr": 471,
81       "html_filename": "AbstractComponent.html",
82       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoShow",
83       "shortDoc": "True to automatically show the component upon creation.\nThis config option may only be used for floating components o..."
84     },
85     {
86       "tagname": "cfg",
87       "name": "autoSize",
88       "member": "Ext.draw.Component",
89       "type": "Boolean",
90       "doc": "<p>Turn on autoSize support which will set the bounding div's size to the natural size of the contents. Defaults to false.</p>\n",
91       "private": false,
92       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/Component.js",
93       "linenr": 81,
94       "html_filename": "Component3.html",
95       "href": "Component3.html#Ext-draw-Component-cfg-autoSize"
96     },
97     {
98       "tagname": "cfg",
99       "name": "background",
100       "member": "Ext.chart.Chart",
101       "type": "Object|Boolean",
102       "doc": "<p>(optional) Set the chart background. This can be a gradient object, image, or color.\nDefaults to false for no background.</p>\n\n<p>For example, if <code>background</code> were to be a color we could set the object as</p>\n\n<pre><code>        background: {\n            //color string\n            fill: '#ccc'\n        }\n     </code></pre>\n\n\n<pre><code> You can specify an image by using:\n</code></pre>\n\n<pre><code>        background: {\n            image: 'http://path.to.image/'\n        }\n     </code></pre>\n\n\n<pre><code> Also you can specify a gradient by using the gradient object syntax:\n</code></pre>\n\n<pre><code>        background: {\n            gradient: {\n                id: 'gradientId',\n                angle: 45,\n                stops: {\n                    0: {\n                        color: '#555'\n                    }\n                    100: {\n                        color: '#ddd'\n                    }\n                }\n            }\n        }\n     </code></pre>\n\n",
103       "private": false,
104       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
105       "linenr": 92,
106       "html_filename": "Chart.html",
107       "href": "Chart.html#Ext-chart-Chart-cfg-background",
108       "shortDoc": "(optional) Set the chart background. This can be a gradient object, image, or color.\nDefaults to false for no backgro..."
109     },
110     {
111       "tagname": "cfg",
112       "name": "baseCls",
113       "member": "Ext.AbstractComponent",
114       "type": "String",
115       "doc": "<p>The base CSS class to apply to this components's element. This will also be prepended to\nelements within this component like Panel's body will get a class x-panel-body. This means\nthat if you create a subclass of Panel, and you want it to get all the Panels styling for the\nelement and the body, you leave the baseCls x-panel and use componentCls to add specific styling for this\ncomponent.</p>\n",
116       "private": false,
117       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
118       "linenr": 252,
119       "html_filename": "AbstractComponent.html",
120       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-baseCls",
121       "shortDoc": "The base CSS class to apply to this components's element. This will also be prepended to\nelements within this compone..."
122     },
123     {
124       "tagname": "cfg",
125       "name": "border",
126       "member": "Ext.AbstractComponent",
127       "type": "Number/String",
128       "doc": "<p>Specifies the border for this component. The border can be a single numeric value to apply to all sides or\nit can be a CSS style specification for each style, for example: '10 5 3 10'.</p>\n",
129       "private": false,
130       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
131       "linenr": 339,
132       "html_filename": "AbstractComponent.html",
133       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-border",
134       "shortDoc": "Specifies the border for this component. The border can be a single numeric value to apply to all sides or\nit can be ..."
135     },
136     {
137       "tagname": "cfg",
138       "name": "cls",
139       "member": "Ext.AbstractComponent",
140       "type": "String",
141       "doc": "<p>An optional extra CSS class that will be added to this component's Element (defaults to '').  This can be\nuseful for adding customized styles to the component or any of its children using standard CSS rules.</p>\n",
142       "private": false,
143       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
144       "linenr": 268,
145       "html_filename": "AbstractComponent.html",
146       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-cls",
147       "shortDoc": "An optional extra CSS class that will be added to this component's Element (defaults to '').  This can be\nuseful for ..."
148     },
149     {
150       "tagname": "cfg",
151       "name": "componentCls",
152       "member": "Ext.AbstractComponent",
153       "type": "String",
154       "doc": "<p>CSS Class to be added to a components root level element to give distinction to it\nvia styling.</p>\n",
155       "private": false,
156       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
157       "linenr": 262,
158       "html_filename": "AbstractComponent.html",
159       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-componentCls"
160     },
161     {
162       "tagname": "cfg",
163       "name": "componentLayout",
164       "member": "Ext.AbstractComponent",
165       "type": "String/Object",
166       "doc": "<p>The sizing and positioning of a Component's internal Elements is the responsibility of\nthe Component's layout manager which sizes a Component's internal structure in response to the Component being sized.</p>\n\n\n<p>Generally, developers will not use this configuration as all provided Components which need their internal\nelements sizing (Such as <a href=\"#/api/Ext.form.field.Base\" rel=\"Ext.form.field.Base\" class=\"docClass\">input fields</a>) come with their own componentLayout managers.</p>\n\n\n<p>The <a href=\"#/api/Ext.layout.container.Auto\" rel=\"Ext.layout.container.Auto\" class=\"docClass\">default layout manager</a> will be used on instances of the base <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> class\nwhich simply sizes the Component's encapsulating element to the height and width specified in the <a href=\"#/api/Ext.chart.Chart-method-setSize\" rel=\"Ext.chart.Chart-method-setSize\" class=\"docClass\">setSize</a> method.</p>\n\n",
167       "private": false,
168       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
169       "linenr": 221,
170       "html_filename": "AbstractComponent.html",
171       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-componentLayout",
172       "shortDoc": "The sizing and positioning of a Component's internal Elements is the responsibility of\nthe Component's layout manager..."
173     },
174     {
175       "tagname": "cfg",
176       "name": "contentEl",
177       "member": "Ext.AbstractComponent",
178       "type": "String",
179       "doc": "<p>Optional. Specify an existing HTML element, or the <code>id</code> of an existing HTML element to use as the content\nfor this component.</p>\n\n\n<ul>\n<li><b>Description</b> :\n<div class=\"sub-desc\">This config option is used to take an existing HTML element and place it in the layout element\nof a new component (it simply moves the specified DOM element <i>after the Component is rendered</i> to use as the content.</div></li>\n<li><b>Notes</b> :\n<div class=\"sub-desc\">The specified HTML element is appended to the layout element of the component <i>after any configured\n<a href=\"#/api/Ext.chart.Chart-cfg-html\" rel=\"Ext.chart.Chart-cfg-html\" class=\"docClass\">HTML</a> has been inserted</i>, and so the document will not contain this element at the time the <a href=\"#/api/Ext.chart.Chart-event-render\" rel=\"Ext.chart.Chart-event-render\" class=\"docClass\">render</a> event is fired.</div>\n<div class=\"sub-desc\">The specified HTML element used will not participate in any <code><b><a href=\"#/api/Ext.container.Container-cfg-layout\" rel=\"Ext.container.Container-cfg-layout\" class=\"docClass\">layout</a></b></code>\nscheme that the Component may use. It is just HTML. Layouts operate on child <code><b><a href=\"#/api/Ext.container.Container-property-items\" rel=\"Ext.container.Container-property-items\" class=\"docClass\">items</a></b></code>.</div>\n<div class=\"sub-desc\">Add either the <code>x-hidden</code> or the <code>x-hide-display</code> CSS class to\nprevent a brief flicker of the content before it is rendered to the panel.</div></li>\n</ul>\n\n",
180       "private": false,
181       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
182       "linenr": 401,
183       "html_filename": "AbstractComponent.html",
184       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-contentEl",
185       "shortDoc": "Optional. Specify an existing HTML element, or the id of an existing HTML element to use as the content\nfor this comp..."
186     },
187     {
188       "tagname": "cfg",
189       "name": "data",
190       "member": "Ext.AbstractComponent",
191       "type": "Mixed",
192       "doc": "<p>The initial set of data to apply to the <code><a href=\"#/api/Ext.chart.Chart-cfg-tpl\" rel=\"Ext.chart.Chart-cfg-tpl\" class=\"docClass\">tpl</a></code> to\nupdate the content area of the Component.</p>\n",
193       "private": false,
194       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
195       "linenr": 239,
196       "html_filename": "AbstractComponent.html",
197       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-data"
198     },
199     {
200       "tagname": "cfg",
201       "name": "disabled",
202       "member": "Ext.AbstractComponent",
203       "type": "Boolean",
204       "doc": "<p>Defaults to false.</p>\n",
205       "private": false,
206       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
207       "linenr": 363,
208       "html_filename": "AbstractComponent.html",
209       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabled"
210     },
211     {
212       "tagname": "cfg",
213       "name": "disabledCls",
214       "member": "Ext.AbstractComponent",
215       "type": "String",
216       "doc": "<p>CSS class to add when the Component is disabled. Defaults to 'x-item-disabled'.</p>\n",
217       "private": false,
218       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
219       "linenr": 281,
220       "html_filename": "AbstractComponent.html",
221       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabledCls"
222     },
223     {
224       "tagname": "cfg",
225       "name": "draggable",
226       "member": "Ext.Component",
227       "type": "Mixed",
228       "doc": "<p>Specify as true to make a <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> Component draggable using the Component's encapsulating element as the drag handle.</p>\n\n\n<p>This may also be specified as a config object for the <a href=\"#/api/Ext.util.ComponentDragger\" rel=\"Ext.util.ComponentDragger\" class=\"docClass\">ComponentDragger</a> which is instantiated to perform dragging.</p>\n\n\n<p>For example to create a Component which may only be dragged around using a certain internal element as the drag handle,\nuse the delegate option:</p>\n\n\n<p><code></p>\n\n<pre>new Ext.Component({\n    constrain: true,\n    floating:true,\n    style: {\n        backgroundColor: '#fff',\n        border: '1px solid black'\n    },\n    html: '&lt;h1 style=\"cursor:move\"&gt;The title&lt;/h1&gt;&lt;p&gt;The content&lt;/p&gt;',\n    draggable: {\n        delegate: 'h1'\n    }\n}).show();\n</pre>\n\n\n<p></code></p>\n",
229       "private": false,
230       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
231       "linenr": 234,
232       "html_filename": "Component.html",
233       "href": "Component.html#Ext-Component-cfg-draggable",
234       "shortDoc": "Specify as true to make a floating Component draggable using the Component's encapsulating element as the drag handle..."
235     },
236     {
237       "tagname": "cfg",
238       "name": "enginePriority",
239       "member": "Ext.chart.Chart",
240       "type": "Array",
241       "doc": "<p>Defines the priority order for which Surface implementation to use. The first\none supported by the current environment will be used.</p>\n",
242       "private": false,
243       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
244       "linenr": 85,
245       "html_filename": "Chart.html",
246       "href": "Chart.html#Ext-chart-Chart-cfg-enginePriority",
247       "shortDoc": "Defines the priority order for which Surface implementation to use. The first\none supported by the current environmen..."
248     },
249     {
250       "tagname": "cfg",
251       "name": "floating",
252       "member": "Ext.Component",
253       "type": "Boolean",
254       "doc": "<p>Specify as true to float the Component outside of the document flow using CSS absolute positioning.</p>\n\n\n<p>Components such as <a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a>s and <a href=\"#/api/Ext.menu.Menu\" rel=\"Ext.menu.Menu\" class=\"docClass\">Menu</a>s are floating\nby default.</p>\n\n\n<p>Floating Components that are programatically <a href=\"#/api/Ext.Component-event-render\" rel=\"Ext.Component-event-render\" class=\"docClass\">rendered</a> will register themselves with the global\n<a href=\"#/api/Ext.WindowManager\" rel=\"Ext.WindowManager\" class=\"docClass\">ZIndexManager</a></p>\n\n\n<h3 class=\"pa\">Floating Components as child items of a Container</h3>\n\n\n<p>A floating Component may be used as a child item of a Container. This just allows the floating Component to seek a ZIndexManager by\nexamining the ownerCt chain.</p>\n\n\n<p>When configured as floating, Components acquire, at render time, a <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">ZIndexManager</a> which manages a stack\nof related floating Components. The ZIndexManager brings a single floating Component to the top of its stack when\nthe Component's <a href=\"#/api/Ext.chart.Chart-method-toFront\" rel=\"Ext.chart.Chart-method-toFront\" class=\"docClass\">toFront</a> method is called.</p>\n\n\n<p>The ZIndexManager is found by traversing up the <a href=\"#/api/Ext.chart.Chart-property-ownerCt\" rel=\"Ext.chart.Chart-property-ownerCt\" class=\"docClass\">ownerCt</a> chain to find an ancestor which itself is floating. This is so that\ndescendant floating Components of floating <i>Containers</i> (Such as a ComboBox dropdown within a Window) can have its zIndex managed relative\nto any siblings, but always <b>above</b> that floating ancestor Container.</p>\n\n\n<p>If no floating ancestor is found, a floating Component registers itself with the default <a href=\"#/api/Ext.WindowManager\" rel=\"Ext.WindowManager\" class=\"docClass\">ZIndexManager</a>.</p>\n\n\n<p>Floating components <i>do not participate in the Container's layout</i>. Because of this, they are not rendered until you explicitly\n<a href=\"#/api/Ext.chart.Chart-event-show\" rel=\"Ext.chart.Chart-event-show\" class=\"docClass\">show</a> them.</p>\n\n\n<p>After rendering, the ownerCt reference is deleted, and the <a href=\"#/api/Ext.chart.Chart-property-floatParent\" rel=\"Ext.chart.Chart-property-floatParent\" class=\"docClass\">floatParent</a> property is set to the found floating ancestor Container.\nIf no floating ancestor Container was found the <a href=\"#/api/Ext.chart.Chart-property-floatParent\" rel=\"Ext.chart.Chart-property-floatParent\" class=\"docClass\">floatParent</a> property will not be set.</p>\n\n",
255       "private": false,
256       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
257       "linenr": 175,
258       "html_filename": "Component.html",
259       "href": "Component.html#Ext-Component-cfg-floating",
260       "shortDoc": "Specify as true to float the Component outside of the document flow using CSS absolute positioning.\n\n\nComponents such..."
261     },
262     {
263       "tagname": "cfg",
264       "name": "focusOnToFront",
265       "member": "Ext.util.Floating",
266       "type": "Boolean",
267       "doc": "<p>Specifies whether the floated component should be automatically <a href=\"#/api/Ext.chart.Chart-method-focus\" rel=\"Ext.chart.Chart-method-focus\" class=\"docClass\">focused</a> when it is\n<a href=\"#/api/Ext.chart.Chart-method-toFront\" rel=\"Ext.chart.Chart-method-toFront\" class=\"docClass\">brought to the front</a>. Defaults to true.</p>\n",
268       "private": false,
269       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
270       "linenr": 9,
271       "html_filename": "Floating.html",
272       "href": "Floating.html#Ext-util-Floating-cfg-focusOnToFront",
273       "shortDoc": "Specifies whether the floated component should be automatically focused when it is\nbrought to the front. Defaults to ..."
274     },
275     {
276       "tagname": "cfg",
277       "name": "frame",
278       "member": "Ext.AbstractComponent",
279       "type": "Boolean",
280       "doc": "<p>Specify as <code>true</code> to have the Component inject framing elements within the Component at render time to\nprovide a graphical rounded frame around the Component content.</p>\n\n\n<p>This is only necessary when running on outdated, or non standard-compliant browsers such as Microsoft's Internet Explorer\nprior to version 9 which do not support rounded corners natively.</p>\n\n\n<p>The extra space taken up by this framing is available from the read only property <a href=\"#/api/Ext.chart.Chart-property-frameSize\" rel=\"Ext.chart.Chart-property-frameSize\" class=\"docClass\">frameSize</a>.</p>\n\n",
281       "private": false,
282       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
283       "linenr": 198,
284       "html_filename": "AbstractComponent.html",
285       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-frame",
286       "shortDoc": "Specify as true to have the Component inject framing elements within the Component at render time to\nprovide a graphi..."
287     },
288     {
289       "tagname": "cfg",
290       "name": "gradients",
291       "member": "Ext.chart.Chart",
292       "type": "Array",
293       "doc": "<p>(optional) Define a set of gradients that can be used as <code>fill</code> property in sprites.\nThe gradients array is an array of objects with the following properties:</p>\n\n<ul>\n<li><strong>id</strong> - string - The unique name of the gradient.</li>\n<li><strong>angle</strong> - number, optional - The angle of the gradient in degrees.</li>\n<li><strong>stops</strong> - object - An object with numbers as keys (from 0 to 100) and style objects\nas values</li>\n</ul>\n\n\n<pre><code> For example:\n</code></pre>\n\n<pre><code>        gradients: [{\n            id: 'gradientId',\n            angle: 45,\n            stops: {\n                0: {\n                    color: '#555'\n                },\n                100: {\n                    color: '#ddd'\n                }\n            }\n        },  {\n            id: 'gradientId2',\n            angle: 0,\n            stops: {\n                0: {\n                    color: '#590'\n                },\n                20: {\n                    color: '#599'\n                },\n                100: {\n                    color: '#ddd'\n                }\n            }\n        }]\n     </code></pre>\n\n\n<pre><code> Then the sprites can use `gradientId` and `gradientId2` by setting the fill attributes to those ids, for example:\n</code></pre>\n\n<pre><code>        sprite.setAttributes({\n            fill: 'url(#gradientId)'\n        }, true);\n     </code></pre>\n\n",
294       "private": false,
295       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
296       "linenr": 134,
297       "html_filename": "Chart.html",
298       "href": "Chart.html#Ext-chart-Chart-cfg-gradients",
299       "shortDoc": "(optional) Define a set of gradients that can be used as fill property in sprites.\nThe gradients array is an array of..."
300     },
301     {
302       "tagname": "cfg",
303       "name": "height",
304       "member": "Ext.AbstractComponent",
305       "type": "Number",
306       "doc": "<p>The height of this component in pixels.</p>\n",
307       "private": false,
308       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
309       "linenr": 334,
310       "html_filename": "AbstractComponent.html",
311       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-height"
312     },
313     {
314       "tagname": "cfg",
315       "name": "hidden",
316       "member": "Ext.AbstractComponent",
317       "type": "Boolean",
318       "doc": "<p>Defaults to false.</p>\n",
319       "private": false,
320       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
321       "linenr": 357,
322       "html_filename": "AbstractComponent.html",
323       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hidden"
324     },
325     {
326       "tagname": "cfg",
327       "name": "hideMode",
328       "member": "Ext.AbstractComponent",
329       "type": "String",
330       "doc": "<p>A String which specifies how this Component's encapsulating DOM element will be hidden.\nValues may be<div class=\"mdetail-params\"><ul>\n<li><code>'display'</code> : The Component will be hidden using the <code>display: none</code> style.</li>\n<li><code>'visibility'</code> : The Component will be hidden using the <code>visibility: hidden</code> style.</li>\n<li><code>'offsets'</code> : The Component will be hidden by absolutely positioning it out of the visible area of the document. This\nis useful when a hidden Component must maintain measurable dimensions. Hiding using <code>display</code> results\nin a Component having zero dimensions.</li></ul></div>\nDefaults to <code>'display'</code>.</p>\n",
331       "private": false,
332       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
333       "linenr": 388,
334       "html_filename": "AbstractComponent.html",
335       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hideMode",
336       "shortDoc": "A String which specifies how this Component's encapsulating DOM element will be hidden.\nValues may be\n'display' : The..."
337     },
338     {
339       "tagname": "cfg",
340       "name": "html",
341       "member": "Ext.AbstractComponent",
342       "type": "String/Object",
343       "doc": "<p>An HTML fragment, or a <a href=\"#/api/Ext.core.DomHelper\" rel=\"Ext.core.DomHelper\" class=\"docClass\">DomHelper</a> specification to use as the layout element\ncontent (defaults to ''). The HTML content is added after the component is rendered,\nso the document will not contain this HTML at the time the <a href=\"#/api/Ext.chart.Chart-event-render\" rel=\"Ext.chart.Chart-event-render\" class=\"docClass\">render</a> event is fired.\nThis content is inserted into the body <i>before</i> any configured <a href=\"#/api/Ext.chart.Chart-cfg-contentEl\" rel=\"Ext.chart.Chart-cfg-contentEl\" class=\"docClass\">contentEl</a> is appended.</p>\n",
344       "private": false,
345       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
346       "linenr": 419,
347       "html_filename": "AbstractComponent.html",
348       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-html",
349       "shortDoc": "An HTML fragment, or a DomHelper specification to use as the layout element\ncontent (defaults to ''). The HTML conten..."
350     },
351     {
352       "tagname": "cfg",
353       "name": "id",
354       "member": "Ext.AbstractComponent",
355       "type": "String",
356       "doc": "<p>The <b><u>unique id of this component instance</u></b> (defaults to an <a href=\"#/api/Ext.chart.Chart-method-getId\" rel=\"Ext.chart.Chart-method-getId\" class=\"docClass\">auto-assigned id</a>).</p>\n\n\n<p>It should not be necessary to use this configuration except for singleton objects in your application.\nComponents created with an id may be accessed globally using <a href=\"#/api/Ext-method-getCmp\" rel=\"Ext-method-getCmp\" class=\"docClass\">Ext.getCmp</a>.</p>\n\n\n<p>Instead of using assigned ids, use the <a href=\"#/api/Ext.chart.Chart-cfg-itemId\" rel=\"Ext.chart.Chart-cfg-itemId\" class=\"docClass\">itemId</a> config, and <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> which\nprovides selector-based searching for Sencha Components analogous to DOM querying. The <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Container</a>\nclass contains <a href=\"#/api/Ext.container.Container-method-down\" rel=\"Ext.container.Container-method-down\" class=\"docClass\">shortcut methods</a> to query its descendant Components by selector.</p>\n\n\n<p>Note that this id will also be used as the element id for the containing HTML element\nthat is rendered to the page for this component. This allows you to write id-based CSS\nrules to style the specific instance of this component uniquely, and also to select\nsub-elements using this component's id as the parent.</p>\n\n\n<p><b>Note</b>: to avoid complications imposed by a unique <tt>id</tt> also see <code><a href=\"#/api/Ext.chart.Chart-cfg-itemId\" rel=\"Ext.chart.Chart-cfg-itemId\" class=\"docClass\">itemId</a></code>.</p>\n\n\n<p><b>Note</b>: to access the container of a Component see <code><a href=\"#/api/Ext.chart.Chart-property-ownerCt\" rel=\"Ext.chart.Chart-property-ownerCt\" class=\"docClass\">ownerCt</a></code>.</p>\n\n",
357       "private": false,
358       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
359       "linenr": 50,
360       "html_filename": "AbstractComponent.html",
361       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-id",
362       "shortDoc": "The unique id of this component instance (defaults to an auto-assigned id).\n\n\nIt should not be necessary to use this ..."
363     },
364     {
365       "tagname": "cfg",
366       "name": "insetPadding",
367       "member": "Ext.chart.Chart",
368       "type": "integer",
369       "doc": "<p>(optional) Set the amount of inset padding in pixels for the chart. Defaults to 10.</p>\n",
370       "private": false,
371       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
372       "linenr": 80,
373       "html_filename": "Chart.html",
374       "href": "Chart.html#Ext-chart-Chart-cfg-insetPadding"
375     },
376     {
377       "tagname": "cfg",
378       "name": "itemId",
379       "member": "Ext.AbstractComponent",
380       "type": "String",
381       "doc": "<p>An <tt>itemId</tt> can be used as an alternative way to get a reference to a component\nwhen no object reference is available.  Instead of using an <code><a href=\"#/api/Ext.chart.Chart-cfg-id\" rel=\"Ext.chart.Chart-cfg-id\" class=\"docClass\">id</a></code> with\n<a href=\"#/api/Ext\" rel=\"Ext\" class=\"docClass\">Ext</a>.<a href=\"#/api/Ext-method-getCmp\" rel=\"Ext-method-getCmp\" class=\"docClass\">getCmp</a>, use <code>itemId</code> with\n<a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Ext.container.Container</a>.<a href=\"#/api/Ext.container.Container-method-getComponent\" rel=\"Ext.container.Container-method-getComponent\" class=\"docClass\">getComponent</a> which will retrieve\n<code>itemId</code>'s or <tt><a href=\"#/api/Ext.chart.Chart-cfg-id\" rel=\"Ext.chart.Chart-cfg-id\" class=\"docClass\">id</a></tt>'s. Since <code>itemId</code>'s are an index to the\ncontainer's internal MixedCollection, the <code>itemId</code> is scoped locally to the container --\navoiding potential conflicts with <a href=\"#/api/Ext.ComponentManager\" rel=\"Ext.ComponentManager\" class=\"docClass\">Ext.ComponentManager</a> which requires a <b>unique</b>\n<code><a href=\"#/api/Ext.chart.Chart-cfg-id\" rel=\"Ext.chart.Chart-cfg-id\" class=\"docClass\">id</a></code>.</p>\n\n\n<pre><code>var c = new Ext.panel.Panel({ //\n    <a href=\"#/api/Ext.Component-cfg-height\" rel=\"Ext.Component-cfg-height\" class=\"docClass\">height</a>: 300,\n    <a href=\"#/api/Ext.chart.Chart-cfg-renderTo\" rel=\"Ext.chart.Chart-cfg-renderTo\" class=\"docClass\">renderTo</a>: document.body,\n    <a href=\"#/api/Ext.container.Container-cfg-layout\" rel=\"Ext.container.Container-cfg-layout\" class=\"docClass\">layout</a>: 'auto',\n    <a href=\"#/api/Ext.container.Container-property-items\" rel=\"Ext.container.Container-property-items\" class=\"docClass\">items</a>: [\n        {\n            itemId: 'p1',\n            <a href=\"#/api/Ext.panel.Panel--title\" rel=\"Ext.panel.Panel--title\" class=\"docClass\">title</a>: 'Panel 1',\n            <a href=\"#/api/Ext.Component-cfg-height\" rel=\"Ext.Component-cfg-height\" class=\"docClass\">height</a>: 150\n        },\n        {\n            itemId: 'p2',\n            <a href=\"#/api/Ext.panel.Panel--title\" rel=\"Ext.panel.Panel--title\" class=\"docClass\">title</a>: 'Panel 2',\n            <a href=\"#/api/Ext.Component-cfg-height\" rel=\"Ext.Component-cfg-height\" class=\"docClass\">height</a>: 150\n        }\n    ]\n})\np1 = c.<a href=\"#/api/Ext.container.Container-method-getComponent\" rel=\"Ext.container.Container-method-getComponent\" class=\"docClass\">getComponent</a>('p1'); // not the same as <a href=\"#/api/Ext-method-getCmp\" rel=\"Ext-method-getCmp\" class=\"docClass\">Ext.getCmp()</a>\np2 = p1.<a href=\"#/api/Ext.chart.Chart-property-ownerCt\" rel=\"Ext.chart.Chart-property-ownerCt\" class=\"docClass\">ownerCt</a>.<a href=\"#/api/Ext.container.Container-method-getComponent\" rel=\"Ext.container.Container-method-getComponent\" class=\"docClass\">getComponent</a>('p2'); // reference via a sibling\n</code></pre>\n\n\n<p>Also see <tt><a href=\"#/api/Ext.chart.Chart-cfg-id\" rel=\"Ext.chart.Chart-cfg-id\" class=\"docClass\">id</a></tt>, <code><a href=\"#/api/Ext.chart.Chart--query\" rel=\"Ext.chart.Chart--query\" class=\"docClass\">query</a></code>, <code><a href=\"#/api/Ext.chart.Chart--down\" rel=\"Ext.chart.Chart--down\" class=\"docClass\">down</a></code> and <code><a href=\"#/api/Ext.chart.Chart--child\" rel=\"Ext.chart.Chart--child\" class=\"docClass\">child</a></code>.</p>\n\n\n<p><b>Note</b>: to access the container of an item see <tt><a href=\"#/api/Ext.chart.Chart-property-ownerCt\" rel=\"Ext.chart.Chart-property-ownerCt\" class=\"docClass\">ownerCt</a></tt>.</p>\n\n",
382       "private": false,
383       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
384       "linenr": 66,
385       "html_filename": "AbstractComponent.html",
386       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-itemId",
387       "shortDoc": "An itemId can be used as an alternative way to get a reference to a component\nwhen no object reference is available. ..."
388     },
389     {
390       "tagname": "cfg",
391       "name": "legend",
392       "member": "Ext.chart.Chart",
393       "type": "Boolean/Object",
394       "doc": "<p>(optional) true for the default legend display or a legend config object. Defaults to false.</p>\n",
395       "private": false,
396       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
397       "linenr": 75,
398       "html_filename": "Chart.html",
399       "href": "Chart.html#Ext-chart-Chart-cfg-legend"
400     },
401     {
402       "tagname": "cfg",
403       "name": "listeners",
404       "member": "Ext.util.Observable",
405       "type": "Object",
406       "doc": "<p>(optional) <p>A config object containing one or more event handlers to be added to this\nobject during initialization.  This should be a valid listeners config object as specified in the\n<a href=\"#/api/Ext.chart.Chart-method-addListener\" rel=\"Ext.chart.Chart-method-addListener\" class=\"docClass\">addListener</a> example for attaching multiple handlers at once.</p></p>\n\n<br><p><b><u>DOM events from ExtJs <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a></u></b></p>\n\n\n<br><p>While <i>some</i> ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this\n\n\n<p>is usually only done when extra value can be added. For example the <a href=\"#/api/Ext.view.View\" rel=\"Ext.view.View\" class=\"docClass\">DataView</a>'s\n<b><code><a href=\"#/api/Ext.view.View--click\" rel=\"Ext.view.View--click\" class=\"docClass\">click</a></code></b> event passing the node clicked on. To access DOM\nevents directly from a child element of a Component, we need to specify the <code>element</code> option to\nidentify the Component property to add a DOM listener to:</p>\n\n<pre><code>new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n</code></pre>\n\n\n<p></p></p>\n",
407       "private": false,
408       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
409       "linenr": 103,
410       "html_filename": "Observable.html",
411       "href": "Observable.html#Ext-util-Observable-cfg-listeners",
412       "shortDoc": "(optional) A config object containing one or more event handlers to be added to this\nobject during initialization.  T..."
413     },
414     {
415       "tagname": "cfg",
416       "name": "loader",
417       "member": "Ext.AbstractComponent",
418       "type": "Ext.ComponentLoader/Object",
419       "doc": "<p>A configuration object or an instance of a <a href=\"#/api/Ext.ComponentLoader\" rel=\"Ext.ComponentLoader\" class=\"docClass\">Ext.ComponentLoader</a> to load remote\ncontent for this Component.</p>\n",
420       "private": false,
421       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
422       "linenr": 462,
423       "html_filename": "AbstractComponent.html",
424       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-loader"
425     },
426     {
427       "tagname": "cfg",
428       "name": "maintainFlex",
429       "member": "Ext.Component",
430       "type": "Boolean",
431       "doc": "<p><b>Only valid when a sibling element of a <a href=\"#/api/Ext.resizer.Splitter\" rel=\"Ext.resizer.Splitter\" class=\"docClass\">Splitter</a> within a <a href=\"#/api/Ext.layout.container.VBox\" rel=\"Ext.layout.container.VBox\" class=\"docClass\">VBox</a> or\n<a href=\"#/api/Ext.layout.container.HBox\" rel=\"Ext.layout.container.HBox\" class=\"docClass\">HBox</a> layout.</b></p>\n\n\n<p>Specifies that if an immediate sibling Splitter is moved, the Component on the <i>other</i> side is resized, and this\nComponent maintains its configured <a href=\"#/api/Ext.layout.container.Box-cfg-flex\" rel=\"Ext.layout.container.Box-cfg-flex\" class=\"docClass\">flex</a> value.</p>\n\n",
432       "private": false,
433       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
434       "linenr": 256,
435       "html_filename": "Component.html",
436       "href": "Component.html#Ext-Component-cfg-maintainFlex",
437       "shortDoc": "Only valid when a sibling element of a Splitter within a VBox or\nHBox layout.\n\n\nSpecifies that if an immediate siblin..."
438     },
439     {
440       "tagname": "cfg",
441       "name": "margin",
442       "member": "Ext.AbstractComponent",
443       "type": "Number/String",
444       "doc": "<p>Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or\nit can be a CSS style specification for each style, for example: '10 5 3 10'.</p>\n",
445       "private": false,
446       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
447       "linenr": 351,
448       "html_filename": "AbstractComponent.html",
449       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-margin",
450       "shortDoc": "Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or\nit can be ..."
451     },
452     {
453       "tagname": "cfg",
454       "name": "maxHeight",
455       "member": "Ext.AbstractComponent",
456       "type": "Number",
457       "doc": "<p>The maximum value in pixels which this Component will set its height to.</p>\n\n\n<p><b>Warning:</b> This will override any size management applied by layout managers.</p>\n\n",
458       "private": false,
459       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
460       "linenr": 451,
461       "html_filename": "AbstractComponent.html",
462       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxHeight",
463       "shortDoc": "The maximum value in pixels which this Component will set its height to.\n\n\nWarning: This will override any size manag..."
464     },
465     {
466       "tagname": "cfg",
467       "name": "maxWidth",
468       "member": "Ext.AbstractComponent",
469       "type": "Number",
470       "doc": "<p>The maximum value in pixels which this Component will set its width to.</p>\n\n\n<p><b>Warning:</b> This will override any size management applied by layout managers.</p>\n\n",
471       "private": false,
472       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
473       "linenr": 456,
474       "html_filename": "AbstractComponent.html",
475       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxWidth",
476       "shortDoc": "The maximum value in pixels which this Component will set its width to.\n\n\nWarning: This will override any size manage..."
477     },
478     {
479       "tagname": "cfg",
480       "name": "minHeight",
481       "member": "Ext.AbstractComponent",
482       "type": "Number",
483       "doc": "<p>The minimum value in pixels which this Component will set its height to.</p>\n\n\n<p><b>Warning:</b> This will override any size management applied by layout managers.</p>\n\n",
484       "private": false,
485       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
486       "linenr": 441,
487       "html_filename": "AbstractComponent.html",
488       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minHeight",
489       "shortDoc": "The minimum value in pixels which this Component will set its height to.\n\n\nWarning: This will override any size manag..."
490     },
491     {
492       "tagname": "cfg",
493       "name": "minWidth",
494       "member": "Ext.AbstractComponent",
495       "type": "Number",
496       "doc": "<p>The minimum value in pixels which this Component will set its width to.</p>\n\n\n<p><b>Warning:</b> This will override any size management applied by layout managers.</p>\n\n",
497       "private": false,
498       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
499       "linenr": 446,
500       "html_filename": "AbstractComponent.html",
501       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minWidth",
502       "shortDoc": "The minimum value in pixels which this Component will set its width to.\n\n\nWarning: This will override any size manage..."
503     },
504     {
505       "tagname": "cfg",
506       "name": "overCls",
507       "member": "Ext.AbstractComponent",
508       "type": "String",
509       "doc": "<p>An optional extra CSS class that will be added to this component's Element when the mouse moves\nover the Element, and removed when the mouse moves out. (defaults to '').  This can be\nuseful for adding customized 'active' or 'hover' styles to the component or any of its children using standard CSS rules.</p>\n",
510       "private": false,
511       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
512       "linenr": 274,
513       "html_filename": "AbstractComponent.html",
514       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-overCls",
515       "shortDoc": "An optional extra CSS class that will be added to this component's Element when the mouse moves\nover the Element, and..."
516     },
517     {
518       "tagname": "cfg",
519       "name": "padding",
520       "member": "Ext.AbstractComponent",
521       "type": "Number/String",
522       "doc": "<p>Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or\nit can be a CSS style specification for each style, for example: '10 5 3 10'.</p>\n",
523       "private": false,
524       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
525       "linenr": 345,
526       "html_filename": "AbstractComponent.html",
527       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-padding",
528       "shortDoc": "Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or\nit can b..."
529     },
530     {
531       "tagname": "cfg",
532       "name": "plugins",
533       "member": "Ext.AbstractComponent",
534       "type": "Object/Array",
535       "doc": "<p>An object or array of objects that will provide custom functionality for this component.  The only\nrequirement for a valid plugin is that it contain an init method that accepts a reference of type <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a>.\nWhen a component is created, if any plugins are available, the component will call the init method on each\nplugin, passing a reference to itself.  Each plugin can then call methods or respond to events on the\ncomponent as needed to provide its functionality.</p>\n",
536       "private": false,
537       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
538       "linenr": 491,
539       "html_filename": "AbstractComponent.html",
540       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-plugins",
541       "shortDoc": "An object or array of objects that will provide custom functionality for this component.  The only\nrequirement for a ..."
542     },
543     {
544       "tagname": "cfg",
545       "name": "renderSelectors",
546       "member": "Ext.AbstractComponent",
547       "type": "Object",
548       "doc": "<p>An object containing properties specifying <a href=\"#/api/Ext.DomQuery\" rel=\"Ext.DomQuery\" class=\"docClass\">DomQuery</a> selectors which identify child elements\ncreated by the render process.</p>\n\n<p>After the Component's internal structure is rendered according to the <a href=\"#/api/Ext.chart.Chart-cfg-renderTpl\" rel=\"Ext.chart.Chart-cfg-renderTpl\" class=\"docClass\">renderTpl</a>, this object is iterated through,\nand the found Elements are added as properties to the Component using the <code>renderSelector</code> property name.</p>\n\n<p>For example, a Component which rendered an image, and description into its element might use the following properties\ncoded into its prototype:</p>\n\n<pre><code>renderTpl: '&amp;lt;img src=\"{imageUrl}\" class=\"x-image-component-img\"&gt;&amp;lt;div class=\"x-image-component-desc\"&gt;{description}&amp;gt;/div&amp;lt;',\n\nrenderSelectors: {\n    image: 'img.x-image-component-img',\n    descEl: 'div.x-image-component-desc'\n}\n</code></pre>\n\n<p>After rendering, the Component would have a property <code>image</code> referencing its child <code>img</code> Element,\nand a property <code>descEl</code> referencing the <code>div</code> Element which contains the description.</p>\n",
549       "private": false,
550       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
551       "linenr": 158,
552       "html_filename": "AbstractComponent.html",
553       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderSelectors",
554       "shortDoc": "An object containing properties specifying DomQuery selectors which identify child elements\ncreated by the render pro..."
555     },
556     {
557       "tagname": "cfg",
558       "name": "renderTo",
559       "member": "Ext.AbstractComponent",
560       "type": "Mixed",
561       "doc": "<p>Specify the id of the element, a DOM element or an existing Element that this component\nwill be rendered into.</p>\n\n\n<div><ul>\n<li><b>Notes</b> : <ul>\n<div class=\"sub-desc\">Do <u>not</u> use this option if the Component is to be a child item of\na <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Container</a>. It is the responsibility of the\n<a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Container</a>'s <a href=\"#/api/Ext.container.Container-cfg-layout\" rel=\"Ext.container.Container-cfg-layout\" class=\"docClass\">layout manager</a>\nto render and manage its child items.</div>\n<div class=\"sub-desc\">When using this config, a call to render() is not required.</div>\n</ul></li>\n</ul></div>\n\n\n<p>See <code><a href=\"#/api/Ext.chart.Chart-event-render\" rel=\"Ext.chart.Chart-event-render\" class=\"docClass\">render</a></code> also.</p>\n\n",
562       "private": false,
563       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
564       "linenr": 183,
565       "html_filename": "AbstractComponent.html",
566       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTo",
567       "shortDoc": "Specify the id of the element, a DOM element or an existing Element that this component\nwill be rendered into.\n\n\n\nNot..."
568     },
569     {
570       "tagname": "cfg",
571       "name": "renderTpl",
572       "member": "Ext.AbstractComponent",
573       "type": "Mixed",
574       "doc": "<p>An <a href=\"#/api/Ext.XTemplate\" rel=\"Ext.XTemplate\" class=\"docClass\">XTemplate</a> used to create the internal structure inside this Component's\nencapsulating <a href=\"#/api/Ext.chart.Chart-method-getEl\" rel=\"Ext.chart.Chart-method-getEl\" class=\"docClass\">Element</a>.</p>\n\n\n<p>You do not normally need to specify this. For the base classes <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a>\nand <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Ext.container.Container</a>, this defaults to <b><code>null</code></b> which means that they will be initially rendered\nwith no internal structure; they render their <a href=\"#/api/Ext.chart.Chart-method-getEl\" rel=\"Ext.chart.Chart-method-getEl\" class=\"docClass\">Element</a> empty. The more specialized ExtJS and Touch classes\nwhich use a more complex DOM structure, provide their own template definitions.</p>\n\n\n<p>This is intended to allow the developer to create application-specific utility Components with customized\ninternal structure.</p>\n\n\n<p>Upon rendering, any created child elements may be automatically imported into object properties using the\n<a href=\"#/api/Ext.chart.Chart-cfg-renderSelectors\" rel=\"Ext.chart.Chart-cfg-renderSelectors\" class=\"docClass\">renderSelectors</a> option.</p>\n\n",
575       "private": false,
576       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
577       "linenr": 143,
578       "html_filename": "AbstractComponent.html",
579       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTpl",
580       "shortDoc": "An XTemplate used to create the internal structure inside this Component's\nencapsulating Element.\n\n\nYou do not normal..."
581     },
582     {
583       "tagname": "cfg",
584       "name": "resizable",
585       "member": "Ext.Component",
586       "type": "Mixed",
587       "doc": "<p>Specify as <code>true</code> to apply a <a href=\"#/api/Ext.resizer.Resizer\" rel=\"Ext.resizer.Resizer\" class=\"docClass\">Resizer</a> to this Component\nafter rendering.</p>\n\n\n<p>May also be specified as a config object to be passed to the constructor of <a href=\"#/api/Ext.resizer.Resizer\" rel=\"Ext.resizer.Resizer\" class=\"docClass\">Resizer</a>\nto override any defaults. By default the Component passes its minimum and maximum size, and uses\n<code><a href=\"#/api/Ext.resizer.Resizer-cfg-dynamic\" rel=\"Ext.resizer.Resizer-cfg-dynamic\" class=\"docClass\">Ext.resizer.Resizer.dynamic</a>: false</code></p>\n\n",
588       "private": false,
589       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
590       "linenr": 154,
591       "html_filename": "Component.html",
592       "href": "Component.html#Ext-Component-cfg-resizable",
593       "shortDoc": "Specify as true to apply a Resizer to this Component\nafter rendering.\n\n\nMay also be specified as a config object to b..."
594     },
595     {
596       "tagname": "cfg",
597       "name": "resize",
598       "member": "Ext.chart.Chart",
599       "type": "boolean",
600       "doc": "<p>Redraw the chart. If animations are set this will animate the chart too. Optional flag which changes the default origin points of the chart for animations.</p>\n",
601       "private": false,
602       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
603       "linenr": 288,
604       "html_filename": "Chart.html",
605       "href": "Chart.html#Ext-chart-Chart-cfg-resize",
606       "shortDoc": "Redraw the chart. If animations are set this will animate the chart too. Optional flag which changes the default orig..."
607     },
608     {
609       "tagname": "cfg",
610       "name": "resizeHandles",
611       "member": "Ext.Component",
612       "type": "String",
613       "doc": "<p>A valid <a href=\"#/api/Ext.resizer.Resizer\" rel=\"Ext.resizer.Resizer\" class=\"docClass\">Ext.resizer.Resizer</a> handles config string (defaults to 'all').  Only applies when resizable = true.</p>\n",
614       "private": false,
615       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
616       "linenr": 163,
617       "html_filename": "Component.html",
618       "href": "Component.html#Ext-Component-cfg-resizeHandles"
619     },
620     {
621       "tagname": "cfg",
622       "name": "saveBuffer",
623       "member": "Ext.state.Stateful",
624       "type": "Number",
625       "doc": "<p>A buffer to be applied if many state events are fired within\na short period. Defaults to 100.</p>\n",
626       "private": false,
627       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
628       "linenr": 74,
629       "html_filename": "Stateful.html",
630       "href": "Stateful.html#Ext-state-Stateful-cfg-saveBuffer"
631     },
632     {
633       "tagname": "cfg",
634       "name": "shadow",
635       "member": "Ext.util.Floating",
636       "type": "String/Boolean",
637       "doc": "<p>Specifies whether the floating component should be given a shadow. Set to\n<tt>true</tt> to automatically create an <a href=\"#/api/Ext.Shadow\" rel=\"Ext.Shadow\" class=\"docClass\">Ext.Shadow</a>, or a string indicating the\nshadow's display <a href=\"#/api/Ext.Shadow-cfg-mode\" rel=\"Ext.Shadow-cfg-mode\" class=\"docClass\">Ext.Shadow.mode</a>. Set to <tt>false</tt> to disable the shadow.\n(Defaults to <tt>'sides'</tt>.)</p>\n",
638       "private": false,
639       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
640       "linenr": 16,
641       "html_filename": "Floating.html",
642       "href": "Floating.html#Ext-util-Floating-cfg-shadow",
643       "shortDoc": "Specifies whether the floating component should be given a shadow. Set to\ntrue to automatically create an Ext.Shadow,..."
644     },
645     {
646       "tagname": "cfg",
647       "name": "stateEvents",
648       "member": "Ext.state.Stateful",
649       "type": "Array",
650       "doc": "<p>An array of events that, when fired, should trigger this object to\nsave its state (defaults to none). <code>stateEvents</code> may be any type\nof event supported by this object, including browser or custom events\n(e.g., <tt>['click', 'customerchange']</tt>).</p>\n\n\n<p>See <code><a href=\"#/api/Ext.chart.Chart-cfg-stateful\" rel=\"Ext.chart.Chart-cfg-stateful\" class=\"docClass\">stateful</a></code> for an explanation of saving and\nrestoring object state.</p>\n\n",
651       "private": false,
652       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
653       "linenr": 64,
654       "html_filename": "Stateful.html",
655       "href": "Stateful.html#Ext-state-Stateful-cfg-stateEvents",
656       "shortDoc": "An array of events that, when fired, should trigger this object to\nsave its state (defaults to none). stateEvents may..."
657     },
658     {
659       "tagname": "cfg",
660       "name": "stateId",
661       "member": "Ext.state.Stateful",
662       "type": "String",
663       "doc": "<p>The unique id for this object to use for state management purposes.</p>\n\n<p>See <a href=\"#/api/Ext.chart.Chart-cfg-stateful\" rel=\"Ext.chart.Chart-cfg-stateful\" class=\"docClass\">stateful</a> for an explanation of saving and restoring state.</p>\n\n",
664       "private": false,
665       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
666       "linenr": 58,
667       "html_filename": "Stateful.html",
668       "href": "Stateful.html#Ext-state-Stateful-cfg-stateId",
669       "shortDoc": "The unique id for this object to use for state management purposes.\n\nSee stateful for an explanation of saving and re..."
670     },
671     {
672       "tagname": "cfg",
673       "name": "stateful",
674       "member": "Ext.state.Stateful",
675       "type": "Boolean",
676       "doc": "<p>A flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. The object must have\na <code><a href=\"#/api/Ext.chart.Chart-cfg-stateId\" rel=\"Ext.chart.Chart-cfg-stateId\" class=\"docClass\">stateId</a></code> for state to be managed. \nAuto-generated ids are not guaranteed to be stable across page loads and \ncannot be relied upon to save and restore the same state for a object.<p>\n<p>For state saving to work, the state manager's provider must have been\nset to an implementation of <a href=\"#/api/Ext.state.Provider\" rel=\"Ext.state.Provider\" class=\"docClass\">Ext.state.Provider</a> which overrides the\n<a href=\"#/api/Ext.state.Provider-method-set\" rel=\"Ext.state.Provider-method-set\" class=\"docClass\">set</a> and <a href=\"#/api/Ext.state.Provider-method-get\" rel=\"Ext.state.Provider-method-get\" class=\"docClass\">get</a>\nmethods to save and recall name/value pairs. A built-in implementation,\n<a href=\"#/api/Ext.state.CookieProvider\" rel=\"Ext.state.CookieProvider\" class=\"docClass\">Ext.state.CookieProvider</a> is available.</p>\n<p>To set the state provider for the current page:</p>\n<pre><code>Ext.state.Manager.setProvider(new Ext.state.CookieProvider({\n    expires: new Date(new Date().getTime()+(1000*60*60*24*7)), //7 days from now\n}));\n</code></pre>\n<p>A stateful object attempts to save state when one of the events\nlisted in the <code><a href=\"#/api/Ext.chart.Chart-cfg-stateEvents\" rel=\"Ext.chart.Chart-cfg-stateEvents\" class=\"docClass\">stateEvents</a></code> configuration fires.</p>\n<p>To save state, a stateful object first serializes its state by\ncalling <b><code><a href=\"#/api/Ext.chart.Chart-method-getState\" rel=\"Ext.chart.Chart-method-getState\" class=\"docClass\">getState</a></code></b>. By default, this function does\nnothing. The developer must provide an implementation which returns an\nobject hash which represents the restorable state of the object.</p>\n<p>The value yielded by getState is passed to <a href=\"#/api/Ext.state.Manager-method-set\" rel=\"Ext.state.Manager-method-set\" class=\"docClass\">Ext.state.Manager.set</a>\nwhich uses the configured <a href=\"#/api/Ext.state.Provider\" rel=\"Ext.state.Provider\" class=\"docClass\">Ext.state.Provider</a> to save the object\nkeyed by the <code><a href=\"#/api/stateId\" rel=\"stateId\" class=\"docClass\">stateId</a></code></p>.\n<p>During construction, a stateful object attempts to <i>restore</i>\nits state by calling <a href=\"#/api/Ext.state.Manager-method-get\" rel=\"Ext.state.Manager-method-get\" class=\"docClass\">Ext.state.Manager.get</a> passing the\n<code><a href=\"#/api/Ext.chart.Chart-cfg-stateId\" rel=\"Ext.chart.Chart-cfg-stateId\" class=\"docClass\">stateId</a></code></p>\n<p>The resulting object is passed to <b><code><a href=\"#/api/Ext.chart.Chart-method-applyState\" rel=\"Ext.chart.Chart-method-applyState\" class=\"docClass\">applyState</a></code></b>.\nThe default implementation of <code><a href=\"#/api/Ext.chart.Chart-method-applyState\" rel=\"Ext.chart.Chart-method-applyState\" class=\"docClass\">applyState</a></code> simply copies\nproperties into the object, but a developer may override this to support\nmore behaviour.</p>\n<p>You can perform extra processing on state save and restore by attaching\nhandlers to the <a href=\"#/api/Ext.chart.Chart-event-beforestaterestore\" rel=\"Ext.chart.Chart-event-beforestaterestore\" class=\"docClass\">beforestaterestore</a>, <a href=\"#/api/Ext.chart.Chart-event-staterestore\" rel=\"Ext.chart.Chart-event-staterestore\" class=\"docClass\">staterestore</a>,\n<a href=\"#/api/Ext.chart.Chart-event-beforestatesave\" rel=\"Ext.chart.Chart-event-beforestatesave\" class=\"docClass\">beforestatesave</a> and <a href=\"#/api/Ext.chart.Chart-event-statesave\" rel=\"Ext.chart.Chart-event-statesave\" class=\"docClass\">statesave</a> events.</p>\n\n",
677       "private": false,
678       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
679       "linenr": 18,
680       "html_filename": "Stateful.html",
681       "href": "Stateful.html#Ext-state-Stateful-cfg-stateful",
682       "shortDoc": "A flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. ..."
683     },
684     {
685       "tagname": "cfg",
686       "name": "style",
687       "member": "Ext.AbstractComponent",
688       "type": "String",
689       "doc": "<p>A custom style specification to be applied to this component's Element.  Should be a valid argument to\n<a href=\"#/api/Ext.core.Element-method-applyStyles\" rel=\"Ext.core.Element-method-applyStyles\" class=\"docClass\">Ext.core.Element.applyStyles</a>.</p>\n\n<pre><code>        new Ext.panel.Panel({\n            title: 'Some Title',\n            renderTo: Ext.getBody(),\n            width: 400, height: 300,\n            layout: 'form',\n            items: [{\n                xtype: 'textarea',\n                style: {\n                    width: '95%',\n                    marginBottom: '10px'\n                }\n            },\n            new Ext.button.Button({\n                text: 'Send',\n                minWidth: '100',\n                style: {\n                    marginBottom: '10px'\n                }\n            })\n            ]\n        });\n     </code></pre>\n\n",
690       "private": false,
691       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
692       "linenr": 300,
693       "html_filename": "AbstractComponent.html",
694       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-style",
695       "shortDoc": "A custom style specification to be applied to this component's Element.  Should be a valid argument to\nExt.core.Eleme..."
696     },
697     {
698       "tagname": "cfg",
699       "name": "styleHtmlCls",
700       "member": "Ext.AbstractComponent",
701       "type": "String",
702       "doc": "<p>The class that is added to the content target when you set styleHtmlContent to true.\nDefaults to 'x-html'</p>\n",
703       "private": false,
704       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
705       "linenr": 434,
706       "html_filename": "AbstractComponent.html",
707       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlCls"
708     },
709     {
710       "tagname": "cfg",
711       "name": "styleHtmlContent",
712       "member": "Ext.AbstractComponent",
713       "type": "Boolean",
714       "doc": "<p>True to automatically style the html inside the content target of this component (body for panels).\nDefaults to false.</p>\n",
715       "private": false,
716       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
717       "linenr": 427,
718       "html_filename": "AbstractComponent.html",
719       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlContent"
720     },
721     {
722       "tagname": "cfg",
723       "name": "theme",
724       "member": "Ext.chart.Chart",
725       "type": "String",
726       "doc": "<p>(optional) The name of the theme to be used. A theme defines the colors and\nother visual displays of tick marks on axis, text, title text, line colors, marker colors and styles, etc.\nPossible theme values are 'Base', 'Green', 'Sky', 'Red', 'Purple', 'Blue', 'Yellow' and also six category themes\n'Category1' to 'Category6'. Default value is 'Base'.</p>\n",
727       "private": false,
728       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
729       "linenr": 62,
730       "html_filename": "Chart.html",
731       "href": "Chart.html#Ext-chart-Chart-cfg-theme",
732       "shortDoc": "(optional) The name of the theme to be used. A theme defines the colors and\nother visual displays of tick marks on ax..."
733     },
734     {
735       "tagname": "cfg",
736       "name": "toFrontOnShow",
737       "member": "Ext.Component",
738       "type": "Boolean",
739       "doc": "<p>True to automatically call <a href=\"#/api/Ext.chart.Chart-method-toFront\" rel=\"Ext.chart.Chart-method-toFront\" class=\"docClass\">toFront</a> when the <a href=\"#/api/Ext.chart.Chart-event-show\" rel=\"Ext.chart.Chart-event-show\" class=\"docClass\">show</a> method is called\non an already visible, floating component (default is <code>true</code>).</p>\n\n",
740       "private": false,
741       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
742       "linenr": 199,
743       "html_filename": "Component.html",
744       "href": "Component.html#Ext-Component-cfg-toFrontOnShow",
745       "shortDoc": "True to automatically call toFront when the show method is called\non an already visible, floating component (default ..."
746     },
747     {
748       "tagname": "cfg",
749       "name": "tpl",
750       "member": "Ext.AbstractComponent",
751       "type": "Mixed",
752       "doc": "<p>An <bold><a href=\"#/api/Ext.Template\" rel=\"Ext.Template\" class=\"docClass\">Ext.Template</a></bold>, <bold><a href=\"#/api/Ext.XTemplate\" rel=\"Ext.XTemplate\" class=\"docClass\">Ext.XTemplate</a></bold>\nor an array of strings to form an <a href=\"#/api/Ext.XTemplate\" rel=\"Ext.XTemplate\" class=\"docClass\">Ext.XTemplate</a>.\nUsed in conjunction with the <code><a href=\"#/api/Ext.chart.Chart-cfg-data\" rel=\"Ext.chart.Chart-cfg-data\" class=\"docClass\">data</a></code> and\n<code><a href=\"#/api/Ext.chart.Chart-cfg-tplWriteMode\" rel=\"Ext.chart.Chart-cfg-tplWriteMode\" class=\"docClass\">tplWriteMode</a></code> configurations.</p>\n",
753       "private": false,
754       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
755       "linenr": 231,
756       "html_filename": "AbstractComponent.html",
757       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tpl",
758       "shortDoc": "An Ext.Template, Ext.XTemplate\nor an array of strings to form an Ext.XTemplate.\nUsed in conjunction with the data and..."
759     },
760     {
761       "tagname": "cfg",
762       "name": "tplWriteMode",
763       "member": "Ext.AbstractComponent",
764       "type": "String",
765       "doc": "<p>The Ext.(X)Template method to use when\nupdating the content area of the Component. Defaults to <code>'overwrite'</code>\n(see <code><a href=\"#/api/Ext.XTemplate-method-overwrite\" rel=\"Ext.XTemplate-method-overwrite\" class=\"docClass\">Ext.XTemplate.overwrite</a></code>).</p>\n",
766       "private": false,
767       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
768       "linenr": 245,
769       "html_filename": "AbstractComponent.html",
770       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tplWriteMode",
771       "shortDoc": "The Ext.(X)Template method to use when\nupdating the content area of the Component. Defaults to 'overwrite'\n(see Ext.X..."
772     },
773     {
774       "tagname": "cfg",
775       "name": "ui",
776       "member": "Ext.AbstractComponent",
777       "type": "String/Array",
778       "doc": "<p>A set style for a component. Can be a string or an Array of multiple strings (UIs)</p>\n",
779       "private": false,
780       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
781       "linenr": 287,
782       "html_filename": "AbstractComponent.html",
783       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-ui"
784     },
785     {
786       "tagname": "cfg",
787       "name": "viewBox",
788       "member": "Ext.draw.Component",
789       "type": "Boolean",
790       "doc": "<p>Turn on view box support which will scale and position items in the draw component to fit to the component while\nmaintaining aspect ratio. Note that this scaling can override other sizing settings on yor items. Defaults to true.</p>\n",
791       "private": false,
792       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/Component.js",
793       "linenr": 74,
794       "html_filename": "Component3.html",
795       "href": "Component3.html#Ext-draw-Component-cfg-viewBox",
796       "shortDoc": "Turn on view box support which will scale and position items in the draw component to fit to the component while\nmain..."
797     },
798     {
799       "tagname": "cfg",
800       "name": "width",
801       "member": "Ext.AbstractComponent",
802       "type": "Number",
803       "doc": "<p>The width of this component in pixels.</p>\n",
804       "private": false,
805       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
806       "linenr": 329,
807       "html_filename": "AbstractComponent.html",
808       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-width"
809     }
810   ],
811   "method": [
812     {
813       "tagname": "method",
814       "name": "Chart",
815       "member": "Ext.chart.Mask",
816       "doc": "\n",
817       "params": [
818
819       ],
820       "return": {
821         "type": "void",
822         "doc": "\n"
823       },
824       "private": false,
825       "static": false,
826       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Mask.js",
827       "linenr": 1,
828       "html_filename": "Mask.html",
829       "href": "Mask.html#Ext-chart-Mask-method-constructor",
830       "shortDoc": "\n"
831     },
832     {
833       "tagname": "method",
834       "name": "addClass",
835       "member": "Ext.AbstractComponent",
836       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.chart.Chart-method-addCls\" rel=\"Ext.chart.Chart-method-addCls\" class=\"docClass\">addCls</a>\nAdds a CSS class to the top level element representing this component.</p>\n",
837       "params": [
838         {
839           "type": "String",
840           "name": "cls",
841           "doc": "<p>The CSS class name to add</p>\n",
842           "optional": false
843         }
844       ],
845       "return": {
846         "type": "Ext.Component",
847         "doc": "<p>Returns the Component to allow method chaining.</p>\n"
848       },
849       "private": false,
850       "static": false,
851       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
852       "linenr": 2161,
853       "html_filename": "AbstractComponent.html",
854       "href": "AbstractComponent.html#Ext-AbstractComponent-method-addClass",
855       "shortDoc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.chart.Chart-method-addCls\" rel=\"Ext.chart.Chart-method-addCls\" class=\"docClass\">addCls</a>\nAdds a CSS class to the top level element representing this component.</p>\n"
856     },
857     {
858       "tagname": "method",
859       "name": "addCls",
860       "member": "Ext.AbstractComponent",
861       "doc": "<p>Adds a CSS class to the top level element representing this component.</p>\n",
862       "params": [
863         {
864           "type": "String",
865           "name": "cls",
866           "doc": "<p>The CSS class name to add</p>\n",
867           "optional": false
868         }
869       ],
870       "return": {
871         "type": "Ext.Component",
872         "doc": "<p>Returns the Component to allow method chaining.</p>\n"
873       },
874       "private": false,
875       "static": false,
876       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
877       "linenr": 2139,
878       "html_filename": "AbstractComponent.html",
879       "href": "AbstractComponent.html#Ext-AbstractComponent-method-addCls",
880       "shortDoc": "<p>Adds a CSS class to the top level element representing this component.</p>\n"
881     },
882     {
883       "tagname": "method",
884       "name": "addClsWithUI",
885       "member": "Ext.AbstractComponent",
886       "doc": "<p>Adds a cls to the uiCls array, which will also call <a href=\"#/api/Ext.chart.Chart--addUIClsToElement\" rel=\"Ext.chart.Chart--addUIClsToElement\" class=\"docClass\">addUIClsToElement</a> and adds\nto all elements of this component.</p>\n",
887       "params": [
888         {
889           "type": "String/Array",
890           "name": "cls",
891           "doc": "<p>A string or an array of strings to add to the uiCls</p>\n",
892           "optional": false
893         }
894       ],
895       "return": {
896         "type": "void",
897         "doc": "\n"
898       },
899       "private": false,
900       "static": false,
901       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
902       "linenr": 1346,
903       "html_filename": "AbstractComponent.html",
904       "href": "AbstractComponent.html#Ext-AbstractComponent-method-addClsWithUI",
905       "shortDoc": "<p>Adds a cls to the uiCls array, which will also call <a href=\"#/api/Ext.chart.Chart--addUIClsToElement\" rel=\"Ext.chart.Chart--addUIClsToElement\" class=\"docClass\">addUIClsToElement</a> and adds\nto all elements of this component.</p>\n"
906     },
907     {
908       "tagname": "method",
909       "name": "addEvents",
910       "member": "Ext.util.Observable",
911       "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
912       "params": [
913         {
914           "type": "Object/String",
915           "name": "o",
916           "doc": "<p>Either an object with event names as properties with a value of <code>true</code>\nor the first event name string if multiple event names are being passed as separate parameters.</p>\n",
917           "optional": false
918         },
919         {
920           "type": "String",
921           "name": "",
922           "doc": "<p>[additional] Optional additional event names if multiple event names are being passed as separate parameters.\nUsage:</p>\n\n<pre><code>this.addEvents('storeloaded', 'storecleared');\n</code></pre>\n\n",
923           "optional": false
924         }
925       ],
926       "return": {
927         "type": "void",
928         "doc": "\n"
929       },
930       "private": false,
931       "static": false,
932       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
933       "linenr": 452,
934       "html_filename": "Observable.html",
935       "href": "Observable.html#Ext-util-Observable-method-addEvents",
936       "shortDoc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n"
937     },
938     {
939       "tagname": "method",
940       "name": "addListener",
941       "member": "Ext.util.Observable",
942       "doc": "<p>Appends an event handler to this object.</p>\n",
943       "params": [
944         {
945           "type": "String",
946           "name": "eventName",
947           "doc": "<p>The name of the event to listen for. May also be an object who's property names are event names. See</p>\n",
948           "optional": false
949         },
950         {
951           "type": "Function",
952           "name": "handler",
953           "doc": "<p>The method the event invokes.</p>\n",
954           "optional": false
955         },
956         {
957           "type": "Object",
958           "name": "scope",
959           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
960           "optional": true
961         },
962         {
963           "type": "Object",
964           "name": "options",
965           "doc": "<p>(optional) An object containing handler configuration.\nproperties. This may contain any of the following properties:<ul>\n<li><b>scope</b> : Object<div class=\"sub-desc\">The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></div></li>\n<li><b>delay</b> : Number<div class=\"sub-desc\">The number of milliseconds to delay the invocation of the handler after the event fires.</div></li>\n<li><b>single</b> : Boolean<div class=\"sub-desc\">True to add a handler to handle just the next firing of the event, and then remove itself.</div></li>\n<li><b>buffer</b> : Number<div class=\"sub-desc\">Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> delayed\nby the specified number of milliseconds. If the event fires again within that time, the original\nhandler is <em>not</em> invoked, but the new handler is scheduled in its place.</div></li>\n<li><b>target</b> : Observable<div class=\"sub-desc\">Only call the handler if the event was fired on the target Observable, <i>not</i>\nif the event was bubbled up from a child Observable.</div></li>\n<li><b>element</b> : String<div class=\"sub-desc\"><b>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</b>\nThe name of a Component property which references an element to add a listener to.</p>\n\n<p>This option is useful during Component construction to add DOM event listeners to elements of <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which\nwill exist only after the Component is rendered. For example, to add a click listener to a Panel's body:\n<pre><code>new Ext.panel.Panel({\n    title: 'The title',\n    listeners: {\n        click: this.handlePanelClick,\n        element: 'body'\n    }\n});\n</code></pre></p>\n\n\n<p>When added in this way, the options available are the options applicable to <a href=\"#/api/Ext.core.Element-method-addListener\" rel=\"Ext.core.Element-method-addListener\" class=\"docClass\">Ext.core.Element.addListener</a></p>\n\n\n<p></div></li>\n</ul><br></p>\n\n<p>\n<b>Combining Options</b><br>\nUsing the options argument, it is possible to combine different types of listeners:<br>\n<br>\nA delayed, one-time listener.\n<pre><code>myPanel.on('hide', this.handleClick, this, {\nsingle: true,\ndelay: 100\n});</code></pre>\n<p>\n<b>Attaching multiple handlers in 1 call</b><br>\nThe method also allows for a single argument to be passed which is a config object containing properties\nwhich specify multiple events. For example:\n<pre><code>myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n</code></pre>.\n<p>\n\n",
966           "optional": true
967         }
968       ],
969       "return": {
970         "type": "void",
971         "doc": "\n"
972       },
973       "private": false,
974       "static": false,
975       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
976       "linenr": 271,
977       "html_filename": "Observable.html",
978       "href": "Observable.html#Ext-util-Observable-method-addListener",
979       "shortDoc": "<p>Appends an event handler to this object.</p>\n"
980     },
981     {
982       "tagname": "method",
983       "name": "addManagedListener",
984       "member": "Ext.util.Observable",
985       "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n",
986       "params": [
987         {
988           "type": "Observable/Element",
989           "name": "item",
990           "doc": "<p>The item to which to add a listener/listeners.</p>\n",
991           "optional": false
992         },
993         {
994           "type": "Object/String",
995           "name": "ename",
996           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
997           "optional": false
998         },
999         {
1000           "type": "Function",
1001           "name": "fn",
1002           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
1003           "optional": false
1004         },
1005         {
1006           "type": "Object",
1007           "name": "scope",
1008           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
1009           "optional": false
1010         },
1011         {
1012           "type": "Object",
1013           "name": "opt",
1014           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
1015           "optional": false
1016         }
1017       ],
1018       "return": {
1019         "type": "void",
1020         "doc": "\n"
1021       },
1022       "private": false,
1023       "static": false,
1024       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1025       "linenr": 155,
1026       "html_filename": "Observable.html",
1027       "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
1028       "shortDoc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n"
1029     },
1030     {
1031       "tagname": "method",
1032       "name": "addStateEvents",
1033       "member": "Ext.state.Stateful",
1034       "doc": "<p>Add events that will trigger the state to be saved.</p>\n",
1035       "params": [
1036         {
1037           "type": "String/Array",
1038           "name": "events",
1039           "doc": "<p>The event name or an array of event names.</p>\n",
1040           "optional": false
1041         }
1042       ],
1043       "return": {
1044         "type": "void",
1045         "doc": "\n"
1046       },
1047       "private": false,
1048       "static": false,
1049       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1050       "linenr": 159,
1051       "html_filename": "Stateful.html",
1052       "href": "Stateful.html#Ext-state-Stateful-method-addStateEvents",
1053       "shortDoc": "<p>Add events that will trigger the state to be saved.</p>\n"
1054     },
1055     {
1056       "tagname": "method",
1057       "name": "afterComponentLayout",
1058       "member": "Ext.AbstractComponent",
1059       "doc": "\n",
1060       "params": [
1061         {
1062           "type": "Number",
1063           "name": "adjWidth",
1064           "doc": "<p>The box-adjusted width that was set</p>\n",
1065           "optional": false
1066         },
1067         {
1068           "type": "Number",
1069           "name": "adjHeight",
1070           "doc": "<p>The box-adjusted height that was set</p>\n",
1071           "optional": false
1072         },
1073         {
1074           "type": "Boolean",
1075           "name": "isSetSize",
1076           "doc": "<p>Whether or not the height/width are stored on the component permanently</p>\n",
1077           "optional": false
1078         },
1079         {
1080           "type": "Ext.Component",
1081           "name": "layoutOwner",
1082           "doc": "<p>Component which sent the layout. Only used when isSetSize is false.</p>\n",
1083           "optional": false
1084         }
1085       ],
1086       "return": {
1087         "type": "void",
1088         "doc": "\n"
1089       },
1090       "private": false,
1091       "static": false,
1092       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1093       "linenr": 2481,
1094       "html_filename": "AbstractComponent.html",
1095       "href": "AbstractComponent.html#Ext-AbstractComponent-method-afterComponentLayout",
1096       "shortDoc": "\n"
1097     },
1098     {
1099       "tagname": "method",
1100       "name": "alignTo",
1101       "member": "Ext.util.Floating",
1102       "doc": "<p>Aligns this floating Component to the specified element</p>\n",
1103       "params": [
1104         {
1105           "type": "Mixed",
1106           "name": "element",
1107           "doc": "<p>The element or <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> to align to. If passing a component, it must\nbe a omponent instance. If a string id is passed, it will be used as an element id.</p>\n",
1108           "optional": false
1109         },
1110         {
1111           "type": "String",
1112           "name": "position",
1113           "doc": "<p>(optional, defaults to \"tl-bl?\") The position to align to (see <a href=\"#/api/Ext.core.Element-method-alignTo\" rel=\"Ext.core.Element-method-alignTo\" class=\"docClass\">Ext.core.Element.alignTo</a> for more details).</p>\n",
1114           "optional": false
1115         },
1116         {
1117           "type": "Array",
1118           "name": "offsets",
1119           "doc": "<p>(optional) Offset the positioning by [x, y]</p>\n",
1120           "optional": true
1121         }
1122       ],
1123       "return": {
1124         "type": "Component",
1125         "doc": "<p>this</p>\n"
1126       },
1127       "private": false,
1128       "static": false,
1129       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
1130       "linenr": 171,
1131       "html_filename": "Floating.html",
1132       "href": "Floating.html#Ext-util-Floating-method-alignTo",
1133       "shortDoc": "<p>Aligns this floating Component to the specified element</p>\n"
1134     },
1135     {
1136       "tagname": "method",
1137       "name": "animate",
1138       "member": "Ext.util.Animate",
1139       "doc": "<p>Perform custom animation on this object.<p>\n<p>This method is applicable to both the the <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Component</a> class and the <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Element</a> class.\nIt performs animated transitions of certain properties of this object over a specified timeline.</p>\n<p>The sole parameter is an object which specifies start property values, end property values, and properties which\ndescribe the timeline. Of the properties listed below, only <b><code>to</code></b> is mandatory.</p>\n<p>Properties include<ul>\n<li><code>from</code> <div class=\"sub-desc\">An object which specifies start values for the properties being animated.\nIf not supplied, properties are animated from current settings. The actual properties which may be animated depend upon\nths object being animated. See the sections below on Element and Component animation.<div></li>\n<li><code>to</code> <div class=\"sub-desc\">An object which specifies end values for the properties being animated.</div></li>\n<li><code>duration</code><div class=\"sub-desc\">The duration <b>in milliseconds</b> for which the animation will run.</div></li>\n<li><code>easing</code> <div class=\"sub-desc\">A string value describing an easing type to modify the rate of change from the default linear to non-linear. Values may be one of:<code><ul>\n<li>ease</li>\n<li>easeIn</li>\n<li>easeOut</li>\n<li>easeInOut</li>\n<li>backIn</li>\n<li>backOut</li>\n<li>elasticIn</li>\n<li>elasticOut</li>\n<li>bounceIn</li>\n<li>bounceOut</li>\n</ul></code></div></li>\n<li><code>keyframes</code> <div class=\"sub-desc\">This is an object which describes the state of animated properties at certain points along the timeline.\nit is an object containing properties who's names are the percentage along the timeline being described and who's values specify the animation state at that point.</div></li>\n<li><code>listeners</code> <div class=\"sub-desc\">This is a standard <a href=\"#/api/Ext.util.Observable-cfg-listeners\" rel=\"Ext.util.Observable-cfg-listeners\" class=\"docClass\">listeners</a> configuration object which may be used\nto inject behaviour at either the <code>beforeanimate</code> event or the <code>afteranimate</code> event.</div></li>\n</ul></p>\n<h3>Animating an <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Element</a></h3>\nWhen animating an Element, the following properties may be specified in <code>from</code>, <code>to</code>, and <code>keyframe</code> objects:<ul>\n<li><code>x</code> <div class=\"sub-desc\">The page X position in pixels.</div></li>\n<li><code>y</code> <div class=\"sub-desc\">The page Y position in pixels</div></li>\n<li><code>left</code> <div class=\"sub-desc\">The element's CSS <code>left</code> value. Units must be supplied.</div></li>\n<li><code>top</code> <div class=\"sub-desc\">The element's CSS <code>top</code> value. Units must be supplied.</div></li>\n<li><code>width</code> <div class=\"sub-desc\">The element's CSS <code>width</code> value. Units must be supplied.</div></li>\n<li><code>height</code> <div class=\"sub-desc\">The element's CSS <code>height</code> value. Units must be supplied.</div></li>\n<li><code>scrollLeft</code> <div class=\"sub-desc\">The element's <code>scrollLeft</code> value.</div></li>\n<li><code>scrollTop</code> <div class=\"sub-desc\">The element's <code>scrollLeft</code> value.</div></li>\n<li><code>opacity</code> <div class=\"sub-desc\">The element's <code>opacity</code> value. This must be a value between <code>0</code> and <code>1</code>.</div></li>\n</ul>\n<p><b>Be aware than animating an Element which is being used by an <a href=\"#/api/Ext\" rel=\"Ext\" class=\"docClass\">Ext</a> Component without in some way informing the Component about the changed element state\nwill result in incorrect Component behaviour. This is because the Component will be using the old state of the element. To avoid this problem, it is now possible to\ndirectly animate certain properties of Components.</b></p>\n<h3>Animating a <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Component</a></h3>\nWhen animating an Element, the following properties may be specified in <code>from</code>, <code>to</code>, and <code>keyframe</code> objects:<ul>\n<li><code>x</code> <div class=\"sub-desc\">The Component's page X position in pixels.</div></li>\n<li><code>y</code> <div class=\"sub-desc\">The Component's page Y position in pixels</div></li>\n<li><code>left</code> <div class=\"sub-desc\">The Component's <code>left</code> value in pixels.</div></li>\n<li><code>top</code> <div class=\"sub-desc\">The Component's <code>top</code> value in pixels.</div></li>\n<li><code>width</code> <div class=\"sub-desc\">The Component's <code>width</code> value in pixels.</div></li>\n<li><code>width</code> <div class=\"sub-desc\">The Component's <code>width</code> value in pixels.</div></li>\n<li><code>dynamic</code> <div class=\"sub-desc\">Specify as true to update the Component's layout (if it is a Container) at every frame\nof the animation. <i>Use sparingly as laying out on every intermediate size change is an expensive operation</i>.</div></li>\n</ul>\n<p>For example, to animate a Window to a new size, ensuring that its internal layout, and any shadow is correct:</p>\n<pre><code>myWindow = Ext.create('Ext.window.Window', {\n    title: 'Test Component animation',\n    width: 500,\n    height: 300,\n    layout: {\n        type: 'hbox',\n        align: 'stretch'\n    },\n    items: [{\n        title: 'Left: 33%',\n        margins: '5 0 5 5',\n        flex: 1\n    }, {\n        title: 'Left: 66%',\n        margins: '5 5 5 5',\n        flex: 2\n    }]\n});\nmyWindow.show();\nmyWindow.header.el.on('click', function() {\n    myWindow.animate({\n        to: {\n            width: (myWindow.getWidth() == 500) ? 700 : 500,\n            height: (myWindow.getHeight() == 300) ? 400 : 300,\n        }\n    });\n});\n</code></pre>\n<p>For performance reasons, by default, the internal layout is only updated when the Window reaches its final <code>\"to\"</code> size. If dynamic updating of the Window's child\nComponents is required, then configure the animation with <code>dynamic: true</code> and the two child items will maintain their proportions during the animation.</p>\n\n",
1140       "params": [
1141         {
1142           "type": "Object",
1143           "name": "config",
1144           "doc": "<p>An object containing properties which describe the animation's start and end states, and the timeline of the animation.</p>\n",
1145           "optional": false
1146         }
1147       ],
1148       "return": {
1149         "type": "Object",
1150         "doc": "<p>this</p>\n"
1151       },
1152       "private": false,
1153       "static": false,
1154       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
1155       "linenr": 207,
1156       "html_filename": "Animate.html",
1157       "href": "Animate.html#Ext-util-Animate-method-animate",
1158       "shortDoc": "Perform custom animation on this object.\nThis method is applicable to both the the Component class and the Element cl..."
1159     },
1160     {
1161       "tagname": "method",
1162       "name": "applyState",
1163       "member": "Ext.state.Stateful",
1164       "doc": "<p>Applies the state to the object. This should be overridden in subclasses to do\nmore complex state operations. By default it applies the state properties onto\nthe current object.</p>\n",
1165       "params": [
1166         {
1167           "type": "Object",
1168           "name": "state",
1169           "doc": "<p>The state</p>\n",
1170           "optional": false
1171         }
1172       ],
1173       "return": {
1174         "type": "void",
1175         "doc": "\n"
1176       },
1177       "private": false,
1178       "static": false,
1179       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1180       "linenr": 225,
1181       "html_filename": "Stateful.html",
1182       "href": "Stateful.html#Ext-state-Stateful-method-applyState",
1183       "shortDoc": "Applies the state to the object. This should be overridden in subclasses to do\nmore complex state operations. By defa..."
1184     },
1185     {
1186       "tagname": "method",
1187       "name": "beforeComponentLayout",
1188       "member": "Ext.AbstractComponent",
1189       "doc": "<p>Occurs before componentLayout is run. Returning false from this method will prevent the componentLayout\nfrom being executed.</p>\n",
1190       "params": [
1191         {
1192           "type": "Number",
1193           "name": "adjWidth",
1194           "doc": "<p>The box-adjusted width that was set</p>\n",
1195           "optional": false
1196         },
1197         {
1198           "type": "Number",
1199           "name": "adjHeight",
1200           "doc": "<p>The box-adjusted height that was set</p>\n",
1201           "optional": false
1202         },
1203         {
1204           "type": "Boolean",
1205           "name": "isSetSize",
1206           "doc": "<p>Whether or not the height/width are stored on the component permanently</p>\n",
1207           "optional": false
1208         },
1209         {
1210           "type": "Ext.Component",
1211           "name": "layoutOwner",
1212           "doc": "<p>Component which sent the layout. Only used when isSetSize is false.</p>\n",
1213           "optional": false
1214         }
1215       ],
1216       "return": {
1217         "type": "void",
1218         "doc": "\n"
1219       },
1220       "private": false,
1221       "static": false,
1222       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1223       "linenr": 2491,
1224       "html_filename": "AbstractComponent.html",
1225       "href": "AbstractComponent.html#Ext-AbstractComponent-method-beforeComponentLayout",
1226       "shortDoc": "Occurs before componentLayout is run. Returning false from this method will prevent the componentLayout\nfrom being ex..."
1227     },
1228     {
1229       "tagname": "method",
1230       "name": "bindStore",
1231       "member": "Ext.chart.Chart",
1232       "doc": "<p>Changes the data store bound to this chart and refreshes it.</p>\n",
1233       "params": [
1234         {
1235           "type": "Store",
1236           "name": "store",
1237           "doc": "<p>The store to bind to this chart</p>\n",
1238           "optional": false
1239         },
1240         {
1241           "type": "Object",
1242           "name": "initial",
1243           "doc": "\n",
1244           "optional": false
1245         }
1246       ],
1247       "return": {
1248         "type": "void",
1249         "doc": "\n"
1250       },
1251       "private": false,
1252       "static": false,
1253       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
1254       "linenr": 510,
1255       "html_filename": "Chart.html",
1256       "href": "Chart.html#Ext-chart-Chart-method-bindStore",
1257       "shortDoc": "<p>Changes the data store bound to this chart and refreshes it.</p>\n"
1258     },
1259     {
1260       "tagname": "method",
1261       "name": "bubble",
1262       "member": "Ext.Component",
1263       "doc": "<p>Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current component. The arguments to the function\nwill be the args provided or the current component. If the function returns false at any point,\nthe bubble is stopped.</p>\n",
1264       "params": [
1265         {
1266           "type": "Function",
1267           "name": "fn",
1268           "doc": "<p>The function to call</p>\n",
1269           "optional": false
1270         },
1271         {
1272           "type": "Object",
1273           "name": "scope",
1274           "doc": "<p>(optional) The scope of the function (defaults to current node)</p>\n",
1275           "optional": true
1276         },
1277         {
1278           "type": "Array",
1279           "name": "args",
1280           "doc": "<p>(optional) The args to call the function with (default to passing the current component)</p>\n",
1281           "optional": true
1282         }
1283       ],
1284       "return": {
1285         "type": "Ext.Component",
1286         "doc": "<p>this</p>\n"
1287       },
1288       "private": false,
1289       "static": false,
1290       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1291       "linenr": 1004,
1292       "html_filename": "Component.html",
1293       "href": "Component.html#Ext-Component-method-bubble",
1294       "shortDoc": "Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of..."
1295     },
1296     {
1297       "tagname": "method",
1298       "name": "capture",
1299       "member": "Ext.util.Observable",
1300       "doc": "<p>Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire.</p>\n",
1301       "params": [
1302         {
1303           "type": "Observable",
1304           "name": "o",
1305           "doc": "<p>The Observable to capture events from.</p>\n",
1306           "optional": false
1307         },
1308         {
1309           "type": "Function",
1310           "name": "fn",
1311           "doc": "<p>The function to call when an event is fired.</p>\n",
1312           "optional": false
1313         },
1314         {
1315           "type": "Object",
1316           "name": "scope",
1317           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Observable firing the event.</p>\n",
1318           "optional": true
1319         }
1320       ],
1321       "return": {
1322         "type": "void",
1323         "doc": "\n"
1324       },
1325       "private": false,
1326       "static": true,
1327       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1328       "linenr": 55,
1329       "html_filename": "Observable.html",
1330       "href": "Observable.html#Ext-util-Observable-method-capture",
1331       "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..."
1332     },
1333     {
1334       "tagname": "method",
1335       "name": "center",
1336       "member": "Ext.util.Floating",
1337       "doc": "<p>Center this Component in its container.</p>\n",
1338       "params": [
1339
1340       ],
1341       "return": {
1342         "type": "Component",
1343         "doc": "<p>this</p>\n"
1344       },
1345       "private": false,
1346       "static": false,
1347       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
1348       "linenr": 249,
1349       "html_filename": "Floating.html",
1350       "href": "Floating.html#Ext-util-Floating-method-center",
1351       "shortDoc": "<p>Center this Component in its container.</p>\n"
1352     },
1353     {
1354       "tagname": "method",
1355       "name": "clearListeners",
1356       "member": "Ext.util.Observable",
1357       "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
1358       "params": [
1359
1360       ],
1361       "return": {
1362         "type": "void",
1363         "doc": "\n"
1364       },
1365       "private": false,
1366       "static": false,
1367       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1368       "linenr": 383,
1369       "html_filename": "Observable.html",
1370       "href": "Observable.html#Ext-util-Observable-method-clearListeners",
1371       "shortDoc": "<p>Removes all listeners for this object including the managed listeners</p>\n"
1372     },
1373     {
1374       "tagname": "method",
1375       "name": "clearManagedListeners",
1376       "member": "Ext.util.Observable",
1377       "doc": "<p>Removes all managed listeners for this object.</p>\n",
1378       "params": [
1379
1380       ],
1381       "return": {
1382         "type": "void",
1383         "doc": "\n"
1384       },
1385       "private": false,
1386       "static": false,
1387       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1388       "linenr": 412,
1389       "html_filename": "Observable.html",
1390       "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
1391       "shortDoc": "<p>Removes all managed listeners for this object.</p>\n"
1392     },
1393     {
1394       "tagname": "method",
1395       "name": "cloneConfig",
1396       "member": "Ext.Component",
1397       "doc": "<p>Clone the current component using the original config values passed into this instance by default.</p>\n",
1398       "params": [
1399         {
1400           "type": "Object",
1401           "name": "overrides",
1402           "doc": "<p>A new config containing any properties to override in the cloned version.\nAn id property can be passed on this object, otherwise one will be generated to avoid duplicates.</p>\n",
1403           "optional": false
1404         }
1405       ],
1406       "return": {
1407         "type": "Ext.Component",
1408         "doc": "<p>clone The cloned copy of this component</p>\n"
1409       },
1410       "private": false,
1411       "static": false,
1412       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1413       "linenr": 944,
1414       "html_filename": "Component.html",
1415       "href": "Component.html#Ext-Component-method-cloneConfig",
1416       "shortDoc": "<p>Clone the current component using the original config values passed into this instance by default.</p>\n"
1417     },
1418     {
1419       "tagname": "method",
1420       "name": "createSurface",
1421       "member": "Ext.draw.Component",
1422       "doc": "<p>Create the Surface instance. Resolves the correct Surface implementation to\ninstantiate based on the 'enginePriority' config. Once the Surface instance is\ncreated you can use the handle to that instance to add sprites. For example:</p>\n\n<pre><code>        drawComponent.surface.add(sprite);\n     </code></pre>\n\n",
1423       "params": [
1424
1425       ],
1426       "return": {
1427         "type": "void",
1428         "doc": "\n"
1429       },
1430       "private": false,
1431       "static": false,
1432       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/Component.js",
1433       "linenr": 209,
1434       "html_filename": "Component3.html",
1435       "href": "Component3.html#Ext-draw-Component-method-createSurface",
1436       "shortDoc": "Create the Surface instance. Resolves the correct Surface implementation to\ninstantiate based on the 'enginePriority'..."
1437     },
1438     {
1439       "tagname": "method",
1440       "name": "destroy",
1441       "member": "Ext.AbstractComponent",
1442       "doc": "<p>Destroys the Component.</p>\n",
1443       "params": [
1444
1445       ],
1446       "return": {
1447         "type": "void",
1448         "doc": "\n"
1449       },
1450       "private": false,
1451       "static": false,
1452       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1453       "linenr": 2672,
1454       "html_filename": "AbstractComponent.html",
1455       "href": "AbstractComponent.html#Ext-AbstractComponent-method-destroy",
1456       "shortDoc": "<p>Destroys the Component.</p>\n"
1457     },
1458     {
1459       "tagname": "method",
1460       "name": "disable",
1461       "member": "Ext.AbstractComponent",
1462       "doc": "<p>Disable the component.</p>\n",
1463       "params": [
1464         {
1465           "type": "Boolean",
1466           "name": "silent",
1467           "doc": "<p>Passing true, will supress the 'disable' event from being fired.</p>\n",
1468           "optional": false
1469         }
1470       ],
1471       "return": {
1472         "type": "void",
1473         "doc": "\n"
1474       },
1475       "private": false,
1476       "static": false,
1477       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1478       "linenr": 2078,
1479       "html_filename": "AbstractComponent.html",
1480       "href": "AbstractComponent.html#Ext-AbstractComponent-method-disable",
1481       "shortDoc": "<p>Disable the component.</p>\n"
1482     },
1483     {
1484       "tagname": "method",
1485       "name": "doAutoRender",
1486       "member": "Ext.AbstractComponent",
1487       "doc": "<p>Handles autoRender.\nFloating Components may have an ownerCt. If they are asking to be constrained, constrain them within that\nownerCt, and have their z-index managed locally. Floating Components are always rendered to document.body</p>\n",
1488       "params": [
1489
1490       ],
1491       "return": {
1492         "type": "void",
1493         "doc": "\n"
1494       },
1495       "private": false,
1496       "static": false,
1497       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1498       "linenr": 816,
1499       "html_filename": "AbstractComponent.html",
1500       "href": "AbstractComponent.html#Ext-AbstractComponent-method-doAutoRender",
1501       "shortDoc": "Handles autoRender.\nFloating Components may have an ownerCt. If they are asking to be constrained, constrain them wit..."
1502     },
1503     {
1504       "tagname": "method",
1505       "name": "doComponentLayout",
1506       "member": "Ext.AbstractComponent",
1507       "doc": "<p>This method needs to be called whenever you change something on this component that requires the Component's\nlayout to be recalculated.</p>\n",
1508       "params": [
1509         {
1510           "type": "Object",
1511           "name": "width",
1512           "doc": "\n",
1513           "optional": false
1514         },
1515         {
1516           "type": "Object",
1517           "name": "height",
1518           "doc": "\n",
1519           "optional": false
1520         },
1521         {
1522           "type": "Object",
1523           "name": "isSetSize",
1524           "doc": "\n",
1525           "optional": false
1526         },
1527         {
1528           "type": "Object",
1529           "name": "ownerCt",
1530           "doc": "\n",
1531           "optional": false
1532         }
1533       ],
1534       "return": {
1535         "type": "Ext.container.Container",
1536         "doc": "<p>this</p>\n"
1537       },
1538       "private": false,
1539       "static": false,
1540       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1541       "linenr": 2437,
1542       "html_filename": "AbstractComponent.html",
1543       "href": "AbstractComponent.html#Ext-AbstractComponent-method-doComponentLayout",
1544       "shortDoc": "This method needs to be called whenever you change something on this component that requires the Component's\nlayout t..."
1545     },
1546     {
1547       "tagname": "method",
1548       "name": "doConstrain",
1549       "member": "Ext.util.Floating",
1550       "doc": "<p>Moves this floating Component into a constrain region.</p>\n\n\n<p>By default, this Component is constrained to be within the container it was added to, or the element\nit was rendered to.</p>\n\n\n<p>An alternative constraint may be passed.</p>\n\n",
1551       "params": [
1552         {
1553           "type": "Mixed",
1554           "name": "constrainTo",
1555           "doc": "<p>Optional. The Element or <a href=\"#/api/Ext.util.Region\" rel=\"Ext.util.Region\" class=\"docClass\">Region</a> into which this Component is to be constrained.</p>\n",
1556           "optional": false
1557         }
1558       ],
1559       "return": {
1560         "type": "void",
1561         "doc": "\n"
1562       },
1563       "private": false,
1564       "static": false,
1565       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
1566       "linenr": 133,
1567       "html_filename": "Floating.html",
1568       "href": "Floating.html#Ext-util-Floating-method-doConstrain",
1569       "shortDoc": "Moves this floating Component into a constrain region.\n\n\nBy default, this Component is constrained to be within the c..."
1570     },
1571     {
1572       "tagname": "method",
1573       "name": "enable",
1574       "member": "Ext.AbstractComponent",
1575       "doc": "<p>Enable the component</p>\n",
1576       "params": [
1577         {
1578           "type": "Boolean",
1579           "name": "silent",
1580           "doc": "<p>Passing false will supress the 'enable' event from being fired.</p>\n",
1581           "optional": false
1582         }
1583       ],
1584       "return": {
1585         "type": "void",
1586         "doc": "\n"
1587       },
1588       "private": false,
1589       "static": false,
1590       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1591       "linenr": 2055,
1592       "html_filename": "AbstractComponent.html",
1593       "href": "AbstractComponent.html#Ext-AbstractComponent-method-enable",
1594       "shortDoc": "<p>Enable the component</p>\n"
1595     },
1596     {
1597       "tagname": "method",
1598       "name": "enableBubble",
1599       "member": "Ext.util.Observable",
1600       "doc": "<p>Enables events fired by this Observable to bubble up an owner hierarchy by calling\n<code>this.getBubbleTarget()</code> if present. There is no implementation in the Observable base class.</p>\n\n\n<p>This is commonly used by Ext.Components to bubble events to owner Containers. See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>. The default\nimplementation in <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> returns the Component's immediate owner. But if a known target is required, this can be overridden to\naccess the required target more quickly.</p>\n\n\n<p>Example:</p>\n\n\n<pre><code>Ext.override(Ext.form.field.Base, {\n//  Add functionality to Field&#39;s initComponent to enable the change event to bubble\ninitComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n    this.enableBubble('change');\n}),\n\n//  We know that we want Field&#39;s events to bubble directly to the FormPanel.\ngetBubbleTarget : function() {\n    if (!this.formPanel) {\n        this.formPanel = this.findParentByType('form');\n    }\n    return this.formPanel;\n}\n});\n\nvar myForm = new Ext.formPanel({\ntitle: 'User Details',\nitems: [{\n    ...\n}],\nlisteners: {\n    change: function() {\n        // Title goes red if form has been modified.\n        myForm.header.setStyle('color', 'red');\n    }\n}\n});\n</code></pre>\n\n",
1601       "params": [
1602         {
1603           "type": "String/Array",
1604           "name": "events",
1605           "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
1606           "optional": false
1607         }
1608       ],
1609       "return": {
1610         "type": "void",
1611         "doc": "\n"
1612       },
1613       "private": false,
1614       "static": false,
1615       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1616       "linenr": 554,
1617       "html_filename": "Observable.html",
1618       "href": "Observable.html#Ext-util-Observable-method-enableBubble",
1619       "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...."
1620     },
1621     {
1622       "tagname": "method",
1623       "name": "findLayoutController",
1624       "member": "Ext.AbstractComponent",
1625       "doc": "<p>This method finds the topmost active layout who's processing will eventually determine the size and position of this\nComponent.<p>\n<p>This method is useful when dynamically adding Components into Containers, and some processing must take place after the\nfinal sizing and positioning of the Component has been performed.</p>\n\n",
1626       "params": [
1627
1628       ],
1629       "return": {
1630         "type": "void",
1631         "doc": "\n"
1632       },
1633       "private": false,
1634       "static": false,
1635       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1636       "linenr": 772,
1637       "html_filename": "AbstractComponent.html",
1638       "href": "AbstractComponent.html#Ext-AbstractComponent-method-findLayoutController",
1639       "shortDoc": "This method finds the topmost active layout who's processing will eventually determine the size and position of this\n..."
1640     },
1641     {
1642       "tagname": "method",
1643       "name": "findParentBy",
1644       "member": "Ext.Component",
1645       "doc": "<p>Find a container above this component at any level by a custom function. If the passed function returns\ntrue, the container will be returned.</p>\n",
1646       "params": [
1647         {
1648           "type": "Function",
1649           "name": "fn",
1650           "doc": "<p>The custom function to call with the arguments (container, this component).</p>\n",
1651           "optional": false
1652         }
1653       ],
1654       "return": {
1655         "type": "Ext.container.Container",
1656         "doc": "<p>The first Container for which the custom function returns true</p>\n"
1657       },
1658       "private": false,
1659       "static": false,
1660       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1661       "linenr": 975,
1662       "html_filename": "Component.html",
1663       "href": "Component.html#Ext-Component-method-findParentBy",
1664       "shortDoc": "Find a container above this component at any level by a custom function. If the passed function returns\ntrue, the con..."
1665     },
1666     {
1667       "tagname": "method",
1668       "name": "findParentByType",
1669       "member": "Ext.Component",
1670       "doc": "<p>Find a container above this component at any level by xtype or class</p>\n\n\n<p>See also the <a href=\"#/api/Ext.Component-method-up\" rel=\"Ext.Component-method-up\" class=\"docClass\">up</a> method.</p>\n\n",
1671       "params": [
1672         {
1673           "type": "String/Class",
1674           "name": "xtype",
1675           "doc": "<p>The xtype string for a component, or the class of the component directly</p>\n",
1676           "optional": false
1677         }
1678       ],
1679       "return": {
1680         "type": "Ext.container.Container",
1681         "doc": "<p>The first Container which matches the given xtype or class</p>\n"
1682       },
1683       "private": false,
1684       "static": false,
1685       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1686       "linenr": 989,
1687       "html_filename": "Component.html",
1688       "href": "Component.html#Ext-Component-method-findParentByType",
1689       "shortDoc": "<p>Find a container above this component at any level by xtype or class</p>\n\n\n<p>See also the <a href=\"#/api/Ext.Component-method-up\" rel=\"Ext.Component-method-up\" class=\"docClass\">up</a> method.</p>\n\n"
1690     },
1691     {
1692       "tagname": "method",
1693       "name": "fireEvent",
1694       "member": "Ext.util.Observable",
1695       "doc": "<p>Fires the specified event with the passed parameters (minus the event name).</p>\n\n\n<p>An event may be set to bubble up an Observable parent hierarchy (See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>)\nby calling <a href=\"#/api/Ext.chart.Chart-method-enableBubble\" rel=\"Ext.chart.Chart-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n\n",
1696       "params": [
1697         {
1698           "type": "String",
1699           "name": "eventName",
1700           "doc": "<p>The name of the event to fire.</p>\n",
1701           "optional": false
1702         },
1703         {
1704           "type": "Object...",
1705           "name": "args",
1706           "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
1707           "optional": false
1708         }
1709       ],
1710       "return": {
1711         "type": "Boolean",
1712         "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
1713       },
1714       "private": false,
1715       "static": false,
1716       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1717       "linenr": 232,
1718       "html_filename": "Observable.html",
1719       "href": "Observable.html#Ext-util-Observable-method-fireEvent",
1720       "shortDoc": "Fires the specified event with the passed parameters (minus the event name).\n\n\nAn event may be set to bubble up an Ob..."
1721     },
1722     {
1723       "tagname": "method",
1724       "name": "focus",
1725       "member": "Ext.Component",
1726       "doc": "<p>Try to focus this component.</p>\n",
1727       "params": [
1728         {
1729           "type": "Boolean",
1730           "name": "selectText",
1731           "doc": "<p>(optional) If applicable, true to also select the text in this component</p>\n",
1732           "optional": true
1733         },
1734         {
1735           "type": "Boolean/Number",
1736           "name": "delay",
1737           "doc": "<p>(optional) Delay the focus this number of milliseconds (true for 10 milliseconds).</p>\n",
1738           "optional": true
1739         }
1740       ],
1741       "return": {
1742         "type": "Ext.Component",
1743         "doc": "<p>this</p>\n"
1744       },
1745       "private": false,
1746       "static": false,
1747       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1748       "linenr": 853,
1749       "html_filename": "Component.html",
1750       "href": "Component.html#Ext-Component-method-focus",
1751       "shortDoc": "<p>Try to focus this component.</p>\n"
1752     },
1753     {
1754       "tagname": "method",
1755       "name": "getActiveAnimation",
1756       "member": "Ext.util.Animate",
1757       "doc": "<p>Returns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n",
1758       "params": [
1759
1760       ],
1761       "return": {
1762         "type": "Mixed",
1763         "doc": "<p>anim if element has active effects, else false</p>\n"
1764       },
1765       "private": false,
1766       "static": false,
1767       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
1768       "linenr": 377,
1769       "html_filename": "Animate.html",
1770       "href": "Animate.html#Ext-util-Animate-method-getActiveAnimation",
1771       "shortDoc": "<p>Returns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n"
1772     },
1773     {
1774       "tagname": "method",
1775       "name": "getBox",
1776       "member": "Ext.Component",
1777       "doc": "<p>Gets the current box measurements of the component's underlying element.</p>\n",
1778       "params": [
1779         {
1780           "type": "Boolean",
1781           "name": "local",
1782           "doc": "<p>(optional) If true the element's left and top are returned instead of page XY (defaults to false)</p>\n",
1783           "optional": true
1784         }
1785       ],
1786       "return": {
1787         "type": "Object",
1788         "doc": "<p>box An object in the format {x, y, width, height}</p>\n"
1789       },
1790       "private": false,
1791       "static": false,
1792       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1793       "linenr": 538,
1794       "html_filename": "Component.html",
1795       "href": "Component.html#Ext-Component-method-getBox",
1796       "shortDoc": "<p>Gets the current box measurements of the component's underlying element.</p>\n"
1797     },
1798     {
1799       "tagname": "method",
1800       "name": "getBubbleTarget",
1801       "member": "Ext.AbstractComponent",
1802       "doc": "<p>Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.</p>\n",
1803       "params": [
1804
1805       ],
1806       "return": {
1807         "type": "Ext.container.Container",
1808         "doc": "<p>the Container which owns this Component.</p>\n"
1809       },
1810       "private": false,
1811       "static": false,
1812       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1813       "linenr": 2276,
1814       "html_filename": "AbstractComponent.html",
1815       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getBubbleTarget",
1816       "shortDoc": "<p>Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.</p>\n"
1817     },
1818     {
1819       "tagname": "method",
1820       "name": "getEl",
1821       "member": "Ext.AbstractComponent",
1822       "doc": "<p>Retrieves the top level element representing this component.</p>\n",
1823       "params": [
1824
1825       ],
1826       "return": {
1827         "type": "void",
1828         "doc": "\n"
1829       },
1830       "private": false,
1831       "static": false,
1832       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1833       "linenr": 1892,
1834       "html_filename": "AbstractComponent.html",
1835       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getEl",
1836       "shortDoc": "<p>Retrieves the top level element representing this component.</p>\n"
1837     },
1838     {
1839       "tagname": "method",
1840       "name": "getHeight",
1841       "member": "Ext.AbstractComponent",
1842       "doc": "<p>Gets the current height of the component's underlying element.</p>\n",
1843       "params": [
1844
1845       ],
1846       "return": {
1847         "type": "Number",
1848         "doc": "\n"
1849       },
1850       "private": false,
1851       "static": false,
1852       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1853       "linenr": 2579,
1854       "html_filename": "AbstractComponent.html",
1855       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getHeight",
1856       "shortDoc": "<p>Gets the current height of the component's underlying element.</p>\n"
1857     },
1858     {
1859       "tagname": "method",
1860       "name": "getId",
1861       "member": "Ext.AbstractComponent",
1862       "doc": "<p>Retrieves the id of this component.\nWill autogenerate an id if one has not already been set.</p>\n",
1863       "params": [
1864
1865       ],
1866       "return": {
1867         "type": "void",
1868         "doc": "\n"
1869       },
1870       "private": false,
1871       "static": false,
1872       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1873       "linenr": 1880,
1874       "html_filename": "AbstractComponent.html",
1875       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getId",
1876       "shortDoc": "<p>Retrieves the id of this component.\nWill autogenerate an id if one has not already been set.</p>\n"
1877     },
1878     {
1879       "tagname": "method",
1880       "name": "getInsertPosition",
1881       "member": "Ext.AbstractComponent",
1882       "doc": "<p>This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insertBefore.</p>\n",
1883       "params": [
1884         {
1885           "type": "String/Number/Element/HTMLElement",
1886           "name": "position",
1887           "doc": "<p>Index, element id or element you want\nto put this component before.</p>\n",
1888           "optional": false
1889         }
1890       ],
1891       "return": {
1892         "type": "HTMLElement",
1893         "doc": "<p>DOM element that you can use in the insertBefore</p>\n"
1894       },
1895       "private": false,
1896       "static": false,
1897       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1898       "linenr": 1513,
1899       "html_filename": "AbstractComponent.html",
1900       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getInsertPosition",
1901       "shortDoc": "This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insert..."
1902     },
1903     {
1904       "tagname": "method",
1905       "name": "getLoader",
1906       "member": "Ext.AbstractComponent",
1907       "doc": "<p>Gets the <a href=\"#/api/Ext.ComponentLoader\" rel=\"Ext.ComponentLoader\" class=\"docClass\">Ext.ComponentLoader</a> for this Component.</p>\n",
1908       "params": [
1909
1910       ],
1911       "return": {
1912         "type": "Ext.ComponentLoader",
1913         "doc": "<p>The loader instance, null if it doesn't exist.</p>\n"
1914       },
1915       "private": false,
1916       "static": false,
1917       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1918       "linenr": 2587,
1919       "html_filename": "AbstractComponent.html",
1920       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getLoader",
1921       "shortDoc": "<p>Gets the <a href=\"#/api/Ext.ComponentLoader\" rel=\"Ext.ComponentLoader\" class=\"docClass\">Ext.ComponentLoader</a> for this Component.</p>\n"
1922     },
1923     {
1924       "tagname": "method",
1925       "name": "getPlugin",
1926       "member": "Ext.AbstractComponent",
1927       "doc": "<p>Retrieves a plugin by its pluginId which has been bound to this\ncomponent.</p>\n",
1928       "params": [
1929         {
1930           "type": "Object",
1931           "name": "pluginId",
1932           "doc": "\n",
1933           "optional": false
1934         }
1935       ],
1936       "return": {
1937         "type": "Ext.AbstractPlugin",
1938         "doc": "<p>pluginInstance</p>\n"
1939       },
1940       "private": false,
1941       "static": false,
1942       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1943       "linenr": 2715,
1944       "html_filename": "AbstractComponent.html",
1945       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getPlugin",
1946       "shortDoc": "<p>Retrieves a plugin by its pluginId which has been bound to this\ncomponent.</p>\n"
1947     },
1948     {
1949       "tagname": "method",
1950       "name": "getPosition",
1951       "member": "Ext.Component",
1952       "doc": "<p>Gets the current XY position of the component's underlying element.</p>\n",
1953       "params": [
1954         {
1955           "type": "Boolean",
1956           "name": "local",
1957           "doc": "<p>(optional) If true the element's left and top are returned instead of page XY (defaults to false)</p>\n",
1958           "optional": true
1959         }
1960       ],
1961       "return": {
1962         "type": "Array",
1963         "doc": "<p>The XY position of the element (e.g., [100, 200])</p>\n"
1964       },
1965       "private": false,
1966       "static": false,
1967       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1968       "linenr": 603,
1969       "html_filename": "Component.html",
1970       "href": "Component.html#Ext-Component-method-getPosition",
1971       "shortDoc": "<p>Gets the current XY position of the component's underlying element.</p>\n"
1972     },
1973     {
1974       "tagname": "method",
1975       "name": "getSize",
1976       "member": "Ext.AbstractComponent",
1977       "doc": "<p>Gets the current size of the component's underlying element.</p>\n",
1978       "params": [
1979
1980       ],
1981       "return": {
1982         "type": "Object",
1983         "doc": "<p>An object containing the element's size {width: (element width), height: (element height)}</p>\n"
1984       },
1985       "private": false,
1986       "static": false,
1987       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1988       "linenr": 2563,
1989       "html_filename": "AbstractComponent.html",
1990       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getSize",
1991       "shortDoc": "<p>Gets the current size of the component's underlying element.</p>\n"
1992     },
1993     {
1994       "tagname": "method",
1995       "name": "getState",
1996       "member": "Ext.state.Stateful",
1997       "doc": "<p>Gets the current state of the object. By default this function returns null,\nit should be overridden in subclasses to implement methods for getting the state.</p>\n",
1998       "params": [
1999
2000       ],
2001       "return": {
2002         "type": "Object",
2003         "doc": "<p>The current state</p>\n"
2004       },
2005       "private": false,
2006       "static": false,
2007       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
2008       "linenr": 216,
2009       "html_filename": "Stateful.html",
2010       "href": "Stateful.html#Ext-state-Stateful-method-getState",
2011       "shortDoc": "Gets the current state of the object. By default this function returns null,\nit should be overridden in subclasses to..."
2012     },
2013     {
2014       "tagname": "method",
2015       "name": "getStateId",
2016       "member": "Ext.state.Stateful",
2017       "doc": "<p>Gets the state id for this object.</p>\n",
2018       "params": [
2019
2020       ],
2021       "return": {
2022         "type": "String",
2023         "doc": "<p>The state id, null if not found.</p>\n"
2024       },
2025       "private": false,
2026       "static": false,
2027       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
2028       "linenr": 237,
2029       "html_filename": "Stateful.html",
2030       "href": "Stateful.html#Ext-state-Stateful-method-getStateId",
2031       "shortDoc": "<p>Gets the state id for this object.</p>\n"
2032     },
2033     {
2034       "tagname": "method",
2035       "name": "getWidth",
2036       "member": "Ext.AbstractComponent",
2037       "doc": "<p>Gets the current width of the component's underlying element.</p>\n",
2038       "params": [
2039
2040       ],
2041       "return": {
2042         "type": "Number",
2043         "doc": "\n"
2044       },
2045       "private": false,
2046       "static": false,
2047       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2048       "linenr": 2571,
2049       "html_filename": "AbstractComponent.html",
2050       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getWidth",
2051       "shortDoc": "<p>Gets the current width of the component's underlying element.</p>\n"
2052     },
2053     {
2054       "tagname": "method",
2055       "name": "getXType",
2056       "member": "Ext.Component",
2057       "doc": "<p>Gets the xtype for this component as registered with <a href=\"#/api/Ext.ComponentManager\" rel=\"Ext.ComponentManager\" class=\"docClass\">Ext.ComponentManager</a>. For a list of all\navailable xtypes, see the <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> header. Example usage:</p>\n\n<pre><code>var t = new Ext.form.field.Text();\nalert(t.getXType());  // alerts 'textfield'\n</code></pre>\n\n",
2058       "params": [
2059
2060       ],
2061       "return": {
2062         "type": "String",
2063         "doc": "<p>The xtype</p>\n"
2064       },
2065       "private": false,
2066       "static": false,
2067       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2068       "linenr": 962,
2069       "html_filename": "Component.html",
2070       "href": "Component.html#Ext-Component-method-getXType",
2071       "shortDoc": "Gets the xtype for this component as registered with Ext.ComponentManager. For a list of all\navailable xtypes, see th..."
2072     },
2073     {
2074       "tagname": "method",
2075       "name": "getXTypes",
2076       "member": "Ext.AbstractComponent",
2077       "doc": "<p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all\navailable xtypes, see the <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> header.</p>\n\n\n<p><b>If using your own subclasses, be aware that a Component must register its own xtype\nto participate in determination of inherited xtypes.</b></p>\n\n\n<p>Example usage:</p>\n\n\n<pre><code>var t = new Ext.form.field.Text();\nalert(t.getXTypes());  // alerts 'component/field/textfield'\n</code></pre>\n\n",
2078       "params": [
2079
2080       ],
2081       "return": {
2082         "type": "String",
2083         "doc": "<p>The xtype hierarchy string</p>\n"
2084       },
2085       "private": false,
2086       "static": false,
2087       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2088       "linenr": 1938,
2089       "html_filename": "AbstractComponent.html",
2090       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getXTypes",
2091       "shortDoc": "Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all\navailable xtypes, see the Ext..."
2092     },
2093     {
2094       "tagname": "method",
2095       "name": "hasActiveFx",
2096       "member": "Ext.util.Animate",
2097       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.chart.Chart-method-getActiveAnimation\" rel=\"Ext.chart.Chart-method-getActiveAnimation\" class=\"docClass\">getActiveAnimation</a>\nReturns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n",
2098       "params": [
2099
2100       ],
2101       "return": {
2102         "type": "Mixed",
2103         "doc": "<p>anim if element has active effects, else false</p>\n"
2104       },
2105       "private": false,
2106       "static": false,
2107       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
2108       "linenr": 369,
2109       "html_filename": "Animate.html",
2110       "href": "Animate.html#Ext-util-Animate-method-hasActiveFx",
2111       "shortDoc": "@deprecated 4.0 Replaced by getActiveAnimation\nReturns thq current animation if this object has any effects actively ..."
2112     },
2113     {
2114       "tagname": "method",
2115       "name": "hasListener",
2116       "member": "Ext.util.Observable",
2117       "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
2118       "params": [
2119         {
2120           "type": "String",
2121           "name": "eventName",
2122           "doc": "<p>The name of the event to check for</p>\n",
2123           "optional": false
2124         }
2125       ],
2126       "return": {
2127         "type": "Boolean",
2128         "doc": "<p>True if the event is being listened for, else false</p>\n"
2129       },
2130       "private": false,
2131       "static": false,
2132       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2133       "linenr": 480,
2134       "html_filename": "Observable.html",
2135       "href": "Observable.html#Ext-util-Observable-method-hasListener",
2136       "shortDoc": "<p>Checks to see if this object has any listeners for a specified event</p>\n"
2137     },
2138     {
2139       "tagname": "method",
2140       "name": "hasUICls",
2141       "member": "Ext.AbstractComponent",
2142       "doc": "<p>Checks if there is currently a specified uiCls</p>\n",
2143       "params": [
2144         {
2145           "type": "String",
2146           "name": "cls",
2147           "doc": "<p>The cls to check</p>\n",
2148           "optional": false
2149         }
2150       ],
2151       "return": {
2152         "type": "void",
2153         "doc": "\n"
2154       },
2155       "private": false,
2156       "static": false,
2157       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2158       "linenr": 1389,
2159       "html_filename": "AbstractComponent.html",
2160       "href": "AbstractComponent.html#Ext-AbstractComponent-method-hasUICls",
2161       "shortDoc": "<p>Checks if there is currently a specified uiCls</p>\n"
2162     },
2163     {
2164       "tagname": "method",
2165       "name": "hide",
2166       "member": "Ext.Component",
2167       "doc": "<p>Hides this Component, setting it to invisible using the configured <a href=\"#/api/Ext.chart.Chart-cfg-hideMode\" rel=\"Ext.chart.Chart-cfg-hideMode\" class=\"docClass\">hideMode</a>.</p>\n",
2168       "params": [
2169         {
2170           "type": "String/Element/Component",
2171           "name": "animateTarget",
2172           "doc": "<p>Optional, and <b>only valid for <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> Components such as\n<a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a>s or <a href=\"#/api/Ext.tip.ToolTip\" rel=\"Ext.tip.ToolTip\" class=\"docClass\">ToolTip</a>s, or regular Components which have been configured\nwith <code>floating: true</code>.</b>.\nThe target to which the Component should animate while hiding (defaults to null with no animation)</p>\n",
2173           "optional": false
2174         },
2175         {
2176           "type": "Function",
2177           "name": "callback",
2178           "doc": "<p>(optional) A callback function to call after the Component is hidden.</p>\n",
2179           "optional": true
2180         },
2181         {
2182           "type": "Object",
2183           "name": "scope",
2184           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the callback is executed. Defaults to this Component.</p>\n",
2185           "optional": true
2186         }
2187       ],
2188       "return": {
2189         "type": "Ext.Component",
2190         "doc": "<p>this</p>\n"
2191       },
2192       "private": false,
2193       "static": false,
2194       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2195       "linenr": 748,
2196       "html_filename": "Component.html",
2197       "href": "Component.html#Ext-Component-method-hide",
2198       "shortDoc": "<p>Hides this Component, setting it to invisible using the configured <a href=\"#/api/Ext.chart.Chart-cfg-hideMode\" rel=\"Ext.chart.Chart-cfg-hideMode\" class=\"docClass\">hideMode</a>.</p>\n"
2199     },
2200     {
2201       "tagname": "method",
2202       "name": "is",
2203       "member": "Ext.AbstractComponent",
2204       "doc": "<p>Tests whether this Component matches the selector string.</p>\n",
2205       "params": [
2206         {
2207           "type": "String",
2208           "name": "selector",
2209           "doc": "<p>The selector string to test against.</p>\n",
2210           "optional": false
2211         }
2212       ],
2213       "return": {
2214         "type": "Boolean",
2215         "doc": "<p>True if this Component matches the selector.</p>\n"
2216       },
2217       "private": false,
2218       "static": false,
2219       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2220       "linenr": 1719,
2221       "html_filename": "AbstractComponent.html",
2222       "href": "AbstractComponent.html#Ext-AbstractComponent-method-is",
2223       "shortDoc": "<p>Tests whether this Component matches the selector string.</p>\n"
2224     },
2225     {
2226       "tagname": "method",
2227       "name": "isDescendantOf",
2228       "member": "Ext.AbstractComponent",
2229       "doc": "<p>Determines whether this component is the descendant of a particular container.</p>\n",
2230       "params": [
2231         {
2232           "type": "Ext.Container",
2233           "name": "container",
2234           "doc": "\n",
2235           "optional": false
2236         }
2237       ],
2238       "return": {
2239         "type": "Boolean",
2240         "doc": "<p>isDescendant</p>\n"
2241       },
2242       "private": false,
2243       "static": false,
2244       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2245       "linenr": 2731,
2246       "html_filename": "AbstractComponent.html",
2247       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDescendantOf",
2248       "shortDoc": "<p>Determines whether this component is the descendant of a particular container.</p>\n"
2249     },
2250     {
2251       "tagname": "method",
2252       "name": "isDisabled",
2253       "member": "Ext.AbstractComponent",
2254       "doc": "<p>Method to determine whether this Component is currently disabled.</p>\n",
2255       "params": [
2256
2257       ],
2258       "return": {
2259         "type": "Boolean",
2260         "doc": "<p>the disabled state of this Component.</p>\n"
2261       },
2262       "private": false,
2263       "static": false,
2264       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2265       "linenr": 2115,
2266       "html_filename": "AbstractComponent.html",
2267       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDisabled",
2268       "shortDoc": "<p>Method to determine whether this Component is currently disabled.</p>\n"
2269     },
2270     {
2271       "tagname": "method",
2272       "name": "isDraggable",
2273       "member": "Ext.AbstractComponent",
2274       "doc": "<p>Method to determine whether this Component is draggable.</p>\n",
2275       "params": [
2276
2277       ],
2278       "return": {
2279         "type": "Boolean",
2280         "doc": "<p>the draggable state of this component.</p>\n"
2281       },
2282       "private": false,
2283       "static": false,
2284       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2285       "linenr": 2292,
2286       "html_filename": "AbstractComponent.html",
2287       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDraggable",
2288       "shortDoc": "<p>Method to determine whether this Component is draggable.</p>\n"
2289     },
2290     {
2291       "tagname": "method",
2292       "name": "isDroppable",
2293       "member": "Ext.AbstractComponent",
2294       "doc": "<p>Method to determine whether this Component is droppable.</p>\n",
2295       "params": [
2296
2297       ],
2298       "return": {
2299         "type": "Boolean",
2300         "doc": "<p>the droppable state of this component.</p>\n"
2301       },
2302       "private": false,
2303       "static": false,
2304       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2305       "linenr": 2300,
2306       "html_filename": "AbstractComponent.html",
2307       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDroppable",
2308       "shortDoc": "<p>Method to determine whether this Component is droppable.</p>\n"
2309     },
2310     {
2311       "tagname": "method",
2312       "name": "isFloating",
2313       "member": "Ext.AbstractComponent",
2314       "doc": "<p>Method to determine whether this Component is floating.</p>\n",
2315       "params": [
2316
2317       ],
2318       "return": {
2319         "type": "Boolean",
2320         "doc": "<p>the floating state of this component.</p>\n"
2321       },
2322       "private": false,
2323       "static": false,
2324       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2325       "linenr": 2284,
2326       "html_filename": "AbstractComponent.html",
2327       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isFloating",
2328       "shortDoc": "<p>Method to determine whether this Component is floating.</p>\n"
2329     },
2330     {
2331       "tagname": "method",
2332       "name": "isHidden",
2333       "member": "Ext.AbstractComponent",
2334       "doc": "<p>Method to determine whether this Component is currently set to hidden.</p>\n",
2335       "params": [
2336
2337       ],
2338       "return": {
2339         "type": "Boolean",
2340         "doc": "<p>the hidden state of this Component.</p>\n"
2341       },
2342       "private": false,
2343       "static": false,
2344       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2345       "linenr": 2131,
2346       "html_filename": "AbstractComponent.html",
2347       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isHidden",
2348       "shortDoc": "<p>Method to determine whether this Component is currently set to hidden.</p>\n"
2349     },
2350     {
2351       "tagname": "method",
2352       "name": "isVisible",
2353       "member": "Ext.AbstractComponent",
2354       "doc": "<p>Returns true if this component is visible.</p>\n",
2355       "params": [
2356         {
2357           "type": "Boolean",
2358           "name": "deep",
2359           "doc": "<p>. <p>Optional. Pass <code>true</code> to interrogate the visibility status of all\nparent Containers to determine whether this Component is truly visible to the user.</p></p>\n\n<p>Generally, to determine whether a Component is hidden, the no argument form is needed. For example\nwhen creating dynamically laid out UIs in a hidden Container before showing them.</p>\n\n",
2360           "optional": false
2361         }
2362       ],
2363       "return": {
2364         "type": "Boolean",
2365         "doc": "<p>True if this component is visible, false otherwise.</p>\n"
2366       },
2367       "private": false,
2368       "static": false,
2369       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2370       "linenr": 2015,
2371       "html_filename": "AbstractComponent.html",
2372       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isVisible",
2373       "shortDoc": "<p>Returns true if this component is visible.</p>\n"
2374     },
2375     {
2376       "tagname": "method",
2377       "name": "isXType",
2378       "member": "Ext.AbstractComponent",
2379       "doc": "<p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended\nfrom the xtype (default) or whether it is directly of the xtype specified (shallow = true).</p>\n\n\n<p><b>If using your own subclasses, be aware that a Component must register its own xtype\nto participate in determination of inherited xtypes.</b></p>\n\n\n<p>For a list of all available xtypes, see the <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> header.</p>\n\n\n<p>Example usage:</p>\n\n\n<pre><code>var t = new Ext.form.field.Text();\nvar isText = t.isXType('textfield');        // true\nvar isBoxSubclass = t.isXType('field');       // true, descended from <a href=\"#/api/Ext.form.field.Base\" rel=\"Ext.form.field.Base\" class=\"docClass\">Ext.form.field.Base</a>\nvar isBoxInstance = t.isXType('field', true); // false, not a direct <a href=\"#/api/Ext.form.field.Base\" rel=\"Ext.form.field.Base\" class=\"docClass\">Ext.form.field.Base</a> instance\n</code></pre>\n\n",
2380       "params": [
2381         {
2382           "type": "String",
2383           "name": "xtype",
2384           "doc": "<p>The xtype to check for this Component</p>\n",
2385           "optional": false
2386         },
2387         {
2388           "type": "Boolean",
2389           "name": "shallow",
2390           "doc": "<p>(optional) False to check whether this Component is descended from the xtype (this is\nthe default), or true to check whether this Component is directly of the specified xtype.</p>\n",
2391           "optional": true
2392         }
2393       ],
2394       "return": {
2395         "type": "Boolean",
2396         "doc": "<p>True if this component descends from the specified xtype, false otherwise.</p>\n"
2397       },
2398       "private": false,
2399       "static": false,
2400       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2401       "linenr": 1907,
2402       "html_filename": "AbstractComponent.html",
2403       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isXType",
2404       "shortDoc": "Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended\nfrom th..."
2405     },
2406     {
2407       "tagname": "method",
2408       "name": "nextNode",
2409       "member": "Ext.AbstractComponent",
2410       "doc": "<p>Returns the next node in the Component tree in tree traversal order.</p>\n\n\n<p>Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will\nwalk the tree to attempt to find a match. Contrast with <a href=\"#/api/Ext.chart.Chart--pnextSibling\" rel=\"Ext.chart.Chart--pnextSibling\" class=\"docClass\">pnextSibling</a>.</p>\n\n",
2411       "params": [
2412         {
2413           "type": "String",
2414           "name": "selector",
2415           "doc": "<p>Optional A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the following nodes.</p>\n",
2416           "optional": false
2417         },
2418         {
2419           "type": "Object",
2420           "name": "includeSelf",
2421           "doc": "\n",
2422           "optional": false
2423         }
2424       ],
2425       "return": {
2426         "type": "void",
2427         "doc": "<p>The next node (or the next node which matches the selector). Returns null if there is no matching node.</p>\n"
2428       },
2429       "private": false,
2430       "static": false,
2431       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2432       "linenr": 1845,
2433       "html_filename": "AbstractComponent.html",
2434       "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextNode",
2435       "shortDoc": "Returns the next node in the Component tree in tree traversal order.\n\n\nNote that this is not limited to siblings, and..."
2436     },
2437     {
2438       "tagname": "method",
2439       "name": "nextSibling",
2440       "member": "Ext.AbstractComponent",
2441       "doc": "<p>Returns the next sibling of this Component.</p>\n\n\n<p>Optionally selects the next sibling which matches the passed <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector.</p>\n\n\n<p>May also be refered to as <code><b>next()</b></code></p>\n\n\n<p>Note that this is limited to siblings, and if no siblings of the item match, <code>null</code> is returned. Contrast with <a href=\"#/api/Ext.chart.Chart-method-nextNode\" rel=\"Ext.chart.Chart-method-nextNode\" class=\"docClass\">nextNode</a></p>\n\n",
2442       "params": [
2443         {
2444           "type": "String",
2445           "name": "selector",
2446           "doc": "<p>Optional A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the following items.</p>\n",
2447           "optional": false
2448         }
2449       ],
2450       "return": {
2451         "type": "void",
2452         "doc": "<p>The next sibling (or the next sibling which matches the selector). Returns null if there is no matching sibling.</p>\n"
2453       },
2454       "private": false,
2455       "static": false,
2456       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2457       "linenr": 1749,
2458       "html_filename": "AbstractComponent.html",
2459       "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextSibling",
2460       "shortDoc": "Returns the next sibling of this Component.\n\n\nOptionally selects the next sibling which matches the passed ComponentQ..."
2461     },
2462     {
2463       "tagname": "method",
2464       "name": "observe",
2465       "member": "Ext.util.Observable",
2466       "doc": "<p>Sets observability on the passed class constructor.</p>\n\n<p>This makes any event fired on any instance of the passed class also fire a single event through\nthe <strong>class</strong> allowing for central handling of events on many instances at once.</p>\n\n<p>Usage:</p>\n\n<pre><code>Ext.util.Observable.observe(Ext.data.Connection);\nExt.data.Connection.on('beforerequest', function(con, options) {\n    console.log('Ajax request made to ' + options.url);\n});\n</code></pre>\n",
2467       "params": [
2468         {
2469           "type": "Function",
2470           "name": "c",
2471           "doc": "<p>The class constructor to make observable.</p>\n",
2472           "optional": false
2473         },
2474         {
2475           "type": "Object",
2476           "name": "listeners",
2477           "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.chart.Chart-method-addListener\" rel=\"Ext.chart.Chart-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
2478           "optional": false
2479         }
2480       ],
2481       "return": {
2482         "type": "void",
2483         "doc": "\n"
2484       },
2485       "private": false,
2486       "static": true,
2487       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2488       "linenr": 69,
2489       "html_filename": "Observable.html",
2490       "href": "Observable.html#Ext-util-Observable-method-observe",
2491       "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..."
2492     },
2493     {
2494       "tagname": "method",
2495       "name": "on",
2496       "member": "Ext.util.Observable",
2497       "doc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.chart.Chart-method-addListener\" rel=\"Ext.chart.Chart-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n",
2498       "params": [
2499         {
2500           "type": "String",
2501           "name": "eventName",
2502           "doc": "<p>The type of event to listen for</p>\n",
2503           "optional": false
2504         },
2505         {
2506           "type": "Function",
2507           "name": "handler",
2508           "doc": "<p>The method the event invokes</p>\n",
2509           "optional": false
2510         },
2511         {
2512           "type": "Object",
2513           "name": "scope",
2514           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
2515           "optional": true
2516         },
2517         {
2518           "type": "Object",
2519           "name": "options",
2520           "doc": "<p>(optional) An object containing handler configuration.</p>\n",
2521           "optional": true
2522         }
2523       ],
2524       "return": {
2525         "type": "void",
2526         "doc": "\n"
2527       },
2528       "private": false,
2529       "static": false,
2530       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2531       "linenr": 616,
2532       "html_filename": "Observable.html",
2533       "href": "Observable.html#Ext-util-Observable-method-on",
2534       "shortDoc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.chart.Chart-method-addListener\" rel=\"Ext.chart.Chart-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n"
2535     },
2536     {
2537       "tagname": "method",
2538       "name": "previousNode",
2539       "member": "Ext.AbstractComponent",
2540       "doc": "<p>Returns the previous node in the Component tree in tree traversal order.</p>\n\n\n<p>Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will\nwalk the tree in reverse order to attempt to find a match. Contrast with <a href=\"#/api/Ext.chart.Chart-method-previousSibling\" rel=\"Ext.chart.Chart-method-previousSibling\" class=\"docClass\">previousSibling</a>.</p>\n\n",
2541       "params": [
2542         {
2543           "type": "String",
2544           "name": "selector",
2545           "doc": "<p>Optional. A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the preceding nodes.</p>\n",
2546           "optional": false
2547         },
2548         {
2549           "type": "Object",
2550           "name": "includeSelf",
2551           "doc": "\n",
2552           "optional": false
2553         }
2554       ],
2555       "return": {
2556         "type": "void",
2557         "doc": "<p>The previous node (or the previous node which matches the selector). Returns null if there is no matching node.</p>\n"
2558       },
2559       "private": false,
2560       "static": false,
2561       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2562       "linenr": 1809,
2563       "html_filename": "AbstractComponent.html",
2564       "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousNode",
2565       "shortDoc": "Returns the previous node in the Component tree in tree traversal order.\n\n\nNote that this is not limited to siblings,..."
2566     },
2567     {
2568       "tagname": "method",
2569       "name": "previousSibling",
2570       "member": "Ext.AbstractComponent",
2571       "doc": "<p>Returns the previous sibling of this Component.</p>\n\n\n<p>Optionally selects the previous sibling which matches the passed <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector.</p>\n\n\n<p>May also be refered to as <code><b>prev()</b></code></p>\n\n\n<p>Note that this is limited to siblings, and if no siblings of the item match, <code>null</code> is returned. Contrast with <a href=\"#/api/Ext.chart.Chart-method-previousNode\" rel=\"Ext.chart.Chart-method-previousNode\" class=\"docClass\">previousNode</a></p>\n\n",
2572       "params": [
2573         {
2574           "type": "String",
2575           "name": "selector",
2576           "doc": "<p>Optional. A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the preceding items.</p>\n",
2577           "optional": false
2578         }
2579       ],
2580       "return": {
2581         "type": "void",
2582         "doc": "<p>The previous sibling (or the previous sibling which matches the selector). Returns null if there is no matching sibling.</p>\n"
2583       },
2584       "private": false,
2585       "static": false,
2586       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2587       "linenr": 1779,
2588       "html_filename": "AbstractComponent.html",
2589       "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousSibling",
2590       "shortDoc": "Returns the previous sibling of this Component.\n\n\nOptionally selects the previous sibling which matches the passed Co..."
2591     },
2592     {
2593       "tagname": "method",
2594       "name": "relayEvents",
2595       "member": "Ext.util.Observable",
2596       "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n",
2597       "params": [
2598         {
2599           "type": "Object",
2600           "name": "origin",
2601           "doc": "<p>The Observable whose events this object is to relay.</p>\n",
2602           "optional": false
2603         },
2604         {
2605           "type": "Array",
2606           "name": "events",
2607           "doc": "<p>Array of event names to relay.</p>\n",
2608           "optional": false
2609         },
2610         {
2611           "type": "Object",
2612           "name": "prefix",
2613           "doc": "\n",
2614           "optional": false
2615         }
2616       ],
2617       "return": {
2618         "type": "void",
2619         "doc": "\n"
2620       },
2621       "private": false,
2622       "static": false,
2623       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2624       "linenr": 520,
2625       "html_filename": "Observable.html",
2626       "href": "Observable.html#Ext-util-Observable-method-relayEvents",
2627       "shortDoc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n"
2628     },
2629     {
2630       "tagname": "method",
2631       "name": "releaseCapture",
2632       "member": "Ext.util.Observable",
2633       "doc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n",
2634       "params": [
2635         {
2636           "type": "Observable",
2637           "name": "o",
2638           "doc": "<p>The Observable to release</p>\n",
2639           "optional": false
2640         }
2641       ],
2642       "return": {
2643         "type": "void",
2644         "doc": "\n"
2645       },
2646       "private": false,
2647       "static": true,
2648       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2649       "linenr": 46,
2650       "html_filename": "Observable.html",
2651       "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
2652       "shortDoc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n"
2653     },
2654     {
2655       "tagname": "method",
2656       "name": "removeCls",
2657       "member": "Ext.AbstractComponent",
2658       "doc": "<p>Removes a CSS class from the top level element representing this component.</p>\n",
2659       "params": [
2660         {
2661           "type": "Object",
2662           "name": "className",
2663           "doc": "\n",
2664           "optional": false
2665         }
2666       ],
2667       "return": {
2668         "type": "Ext.Component",
2669         "doc": "<p>Returns the Component to allow method chaining.</p>\n"
2670       },
2671       "private": false,
2672       "static": false,
2673       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2674       "linenr": 2171,
2675       "html_filename": "AbstractComponent.html",
2676       "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeCls",
2677       "shortDoc": "<p>Removes a CSS class from the top level element representing this component.</p>\n"
2678     },
2679     {
2680       "tagname": "method",
2681       "name": "removeClsWithUI",
2682       "member": "Ext.AbstractComponent",
2683       "doc": "<p>Removes a cls to the uiCls array, which will also call <a href=\"#/api/Ext.chart.Chart--removeUIClsToElement\" rel=\"Ext.chart.Chart--removeUIClsToElement\" class=\"docClass\">removeUIClsToElement</a> and removes\nit from all elements of this component.</p>\n",
2684       "params": [
2685         {
2686           "type": "String/Array",
2687           "name": "cls",
2688           "doc": "<p>A string or an array of strings to remove to the uiCls</p>\n",
2689           "optional": false
2690         }
2691       ],
2692       "return": {
2693         "type": "void",
2694         "doc": "\n"
2695       },
2696       "private": false,
2697       "static": false,
2698       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2699       "linenr": 1368,
2700       "html_filename": "AbstractComponent.html",
2701       "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeClsWithUI",
2702       "shortDoc": "Removes a cls to the uiCls array, which will also call removeUIClsToElement and removes\nit from all elements of this ..."
2703     },
2704     {
2705       "tagname": "method",
2706       "name": "removeListener",
2707       "member": "Ext.util.Observable",
2708       "doc": "<p>Removes an event handler.</p>\n",
2709       "params": [
2710         {
2711           "type": "String",
2712           "name": "eventName",
2713           "doc": "<p>The type of event the handler was associated with.</p>\n",
2714           "optional": false
2715         },
2716         {
2717           "type": "Function",
2718           "name": "handler",
2719           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.chart.Chart-method-addListener\" rel=\"Ext.chart.Chart-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
2720           "optional": false
2721         },
2722         {
2723           "type": "Object",
2724           "name": "scope",
2725           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
2726           "optional": true
2727         }
2728       ],
2729       "return": {
2730         "type": "void",
2731         "doc": "\n"
2732       },
2733       "private": false,
2734       "static": false,
2735       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2736       "linenr": 352,
2737       "html_filename": "Observable.html",
2738       "href": "Observable.html#Ext-util-Observable-method-removeListener",
2739       "shortDoc": "<p>Removes an event handler.</p>\n"
2740     },
2741     {
2742       "tagname": "method",
2743       "name": "removeManagedListener",
2744       "member": "Ext.util.Observable",
2745       "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.chart.Chart--mon\" rel=\"Ext.chart.Chart--mon\" class=\"docClass\">mon</a> method.</p>\n",
2746       "params": [
2747         {
2748           "type": "Observable|Element",
2749           "name": "item",
2750           "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
2751           "optional": false
2752         },
2753         {
2754           "type": "Object|String",
2755           "name": "ename",
2756           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
2757           "optional": false
2758         },
2759         {
2760           "type": "Function",
2761           "name": "fn",
2762           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
2763           "optional": false
2764         },
2765         {
2766           "type": "Object",
2767           "name": "scope",
2768           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
2769           "optional": false
2770         }
2771       ],
2772       "return": {
2773         "type": "void",
2774         "doc": "\n"
2775       },
2776       "private": false,
2777       "static": false,
2778       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2779       "linenr": 196,
2780       "html_filename": "Observable.html",
2781       "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
2782       "shortDoc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.chart.Chart--mon\" rel=\"Ext.chart.Chart--mon\" class=\"docClass\">mon</a> method.</p>\n"
2783     },
2784     {
2785       "tagname": "method",
2786       "name": "resumeEvents",
2787       "member": "Ext.util.Observable",
2788       "doc": "<p>Resume firing events. (see <a href=\"#/api/Ext.chart.Chart-method-suspendEvents\" rel=\"Ext.chart.Chart-method-suspendEvents\" class=\"docClass\">suspendEvents</a>)\nIf events were suspended using the <code><b>queueSuspended</b></code> parameter, then all\nevents fired during event suspension will be sent to any listeners now.</p>\n",
2789       "params": [
2790
2791       ],
2792       "return": {
2793         "type": "void",
2794         "doc": "\n"
2795       },
2796       "private": false,
2797       "static": false,
2798       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2799       "linenr": 502,
2800       "html_filename": "Observable.html",
2801       "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
2802       "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..."
2803     },
2804     {
2805       "tagname": "method",
2806       "name": "sequenceFx",
2807       "member": "Ext.util.Animate",
2808       "doc": "<p>Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence.  This is the opposite of <a href=\"#/api/Ext.chart.Chart-method-syncFx\" rel=\"Ext.chart.Chart-method-syncFx\" class=\"docClass\">syncFx</a>.</p>\n",
2809       "params": [
2810
2811       ],
2812       "return": {
2813         "type": "Object",
2814         "doc": "<p>this</p>\n"
2815       },
2816       "private": false,
2817       "static": false,
2818       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
2819       "linenr": 357,
2820       "html_filename": "Animate.html",
2821       "href": "Animate.html#Ext-util-Animate-method-sequenceFx",
2822       "shortDoc": "Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence.  This is the opposite ..."
2823     },
2824     {
2825       "tagname": "method",
2826       "name": "setActive",
2827       "member": "Ext.util.Floating",
2828       "doc": "<p>This method is called internally by <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">Ext.ZIndexManager</a> to signal that a floating\nComponent has either been moved to the top of its zIndex stack, or pushed from the top of its zIndex stack.</p>\n\n\n<p>If a <i>Window</i> is superceded by another Window, deactivating it hides its shadow.</p>\n\n\n<p>This method also fires the <a href=\"#/api/Ext.chart.Chart-event-activate\" rel=\"Ext.chart.Chart-event-activate\" class=\"docClass\">activate</a> or <a href=\"#/api/Ext.chart.Chart-event-deactivate\" rel=\"Ext.chart.Chart-event-deactivate\" class=\"docClass\">deactivate</a> event depending on which action occurred.</p>\n\n",
2829       "params": [
2830         {
2831           "type": "Boolean",
2832           "name": "active",
2833           "doc": "<p>True to activate the Component, false to deactivate it (defaults to false)</p>\n",
2834           "optional": false
2835         },
2836         {
2837           "type": "Component",
2838           "name": "newActive",
2839           "doc": "<p>The newly active Component which is taking over topmost zIndex position.</p>\n",
2840           "optional": false
2841         }
2842       ],
2843       "return": {
2844         "type": "void",
2845         "doc": "\n"
2846       },
2847       "private": false,
2848       "static": false,
2849       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
2850       "linenr": 216,
2851       "html_filename": "Floating.html",
2852       "href": "Floating.html#Ext-util-Floating-method-setActive",
2853       "shortDoc": "This method is called internally by Ext.ZIndexManager to signal that a floating\nComponent has either been moved to th..."
2854     },
2855     {
2856       "tagname": "method",
2857       "name": "setAutoScroll",
2858       "member": "Ext.Component",
2859       "doc": "<p>Sets the overflow on the content element of the component.</p>\n",
2860       "params": [
2861         {
2862           "type": "Boolean",
2863           "name": "scroll",
2864           "doc": "<p>True to allow the Component to auto scroll.</p>\n",
2865           "optional": false
2866         }
2867       ],
2868       "return": {
2869         "type": "Ext.Component",
2870         "doc": "<p>this</p>\n"
2871       },
2872       "private": false,
2873       "static": false,
2874       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2875       "linenr": 359,
2876       "html_filename": "Component.html",
2877       "href": "Component.html#Ext-Component-method-setAutoScroll",
2878       "shortDoc": "<p>Sets the overflow on the content element of the component.</p>\n"
2879     },
2880     {
2881       "tagname": "method",
2882       "name": "setDisabled",
2883       "member": "Ext.AbstractComponent",
2884       "doc": "<p>Enable or disable the component.</p>\n",
2885       "params": [
2886         {
2887           "type": "Boolean",
2888           "name": "disabled",
2889           "doc": "\n",
2890           "optional": false
2891         }
2892       ],
2893       "return": {
2894         "type": "void",
2895         "doc": "\n"
2896       },
2897       "private": false,
2898       "static": false,
2899       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2900       "linenr": 2123,
2901       "html_filename": "AbstractComponent.html",
2902       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDisabled",
2903       "shortDoc": "<p>Enable or disable the component.</p>\n"
2904     },
2905     {
2906       "tagname": "method",
2907       "name": "setDocked",
2908       "member": "Ext.AbstractComponent",
2909       "doc": "<p>Sets the dock position of this component in its parent panel. Note that\nthis only has effect if this item is part of the dockedItems collection\nof a parent that has a DockLayout (note that any Panel has a DockLayout\nby default)</p>\n",
2910       "params": [
2911         {
2912           "type": "Object",
2913           "name": "dock",
2914           "doc": "\n",
2915           "optional": false
2916         },
2917         {
2918           "type": "Object",
2919           "name": "layoutParent",
2920           "doc": "\n",
2921           "optional": false
2922         }
2923       ],
2924       "return": {
2925         "type": "Component",
2926         "doc": "<p>this</p>\n"
2927       },
2928       "private": false,
2929       "static": false,
2930       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2931       "linenr": 2646,
2932       "html_filename": "AbstractComponent.html",
2933       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDocked",
2934       "shortDoc": "Sets the dock position of this component in its parent panel. Note that\nthis only has effect if this item is part of ..."
2935     },
2936     {
2937       "tagname": "method",
2938       "name": "setHeight",
2939       "member": "Ext.AbstractComponent",
2940       "doc": "<p>Sets the height of the component.  This method fires the <a href=\"#/api/Ext.chart.Chart-event-resize\" rel=\"Ext.chart.Chart-event-resize\" class=\"docClass\">resize</a> event.</p>\n",
2941       "params": [
2942         {
2943           "type": "Number",
2944           "name": "height",
2945           "doc": "<p>The new height to set. This may be one of:<div class=\"mdetail-params\"><ul>\n<li>A Number specifying the new height in the <a href=\"#/api/Ext.chart.Chart-method-getEl\" rel=\"Ext.chart.Chart-method-getEl\" class=\"docClass\">Element</a>'s <a href=\"#/api/Ext.core.Element-property-defaultUnit\" rel=\"Ext.core.Element-property-defaultUnit\" class=\"docClass\">Ext.core.Element.defaultUnit</a>s (by default, pixels).</li>\n<li>A String used to set the CSS height style.</li>\n<li><i>undefined</i> to leave the height unchanged.</li>\n</ul></div></p>\n",
2946           "optional": false
2947         }
2948       ],
2949       "return": {
2950         "type": "Ext.Component",
2951         "doc": "<p>this</p>\n"
2952       },
2953       "private": false,
2954       "static": false,
2955       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2956       "linenr": 2550,
2957       "html_filename": "AbstractComponent.html",
2958       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setHeight",
2959       "shortDoc": "<p>Sets the height of the component.  This method fires the <a href=\"#/api/Ext.chart.Chart-event-resize\" rel=\"Ext.chart.Chart-event-resize\" class=\"docClass\">resize</a> event.</p>\n"
2960     },
2961     {
2962       "tagname": "method",
2963       "name": "setLoading",
2964       "member": "Ext.AbstractComponent",
2965       "doc": "<p>This method allows you to show or hide a LoadMask on top of this component.</p>\n",
2966       "params": [
2967         {
2968           "type": "Boolean/Object/String",
2969           "name": "load",
2970           "doc": "<p>True to show the default LoadMask, a config object\nthat will be passed to the LoadMask constructor, or a message String to show. False to\nhide the current LoadMask.</p>\n",
2971           "optional": false
2972         },
2973         {
2974           "type": "Boolean",
2975           "name": "targetEl",
2976           "doc": "<p>True to mask the targetEl of this Component instead of the this.el.\nFor example, setting this to true on a Panel will cause only the body to be masked. (defaults to false)</p>\n",
2977           "optional": false
2978         }
2979       ],
2980       "return": {
2981         "type": "Ext.LoadMask",
2982         "doc": "<p>The LoadMask instance that has just been shown.</p>\n"
2983       },
2984       "private": false,
2985       "static": false,
2986       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2987       "linenr": 2611,
2988       "html_filename": "AbstractComponent.html",
2989       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setLoading",
2990       "shortDoc": "<p>This method allows you to show or hide a LoadMask on top of this component.</p>\n"
2991     },
2992     {
2993       "tagname": "method",
2994       "name": "setPagePosition",
2995       "member": "Ext.Component",
2996       "doc": "<p>Sets the page XY position of the component.  To set the left and top instead, use <a href=\"#/api/Ext.chart.Chart-method-setPosition\" rel=\"Ext.chart.Chart-method-setPosition\" class=\"docClass\">setPosition</a>.\nThis method fires the <a href=\"#/api/Ext.chart.Chart-event-move\" rel=\"Ext.chart.Chart-event-move\" class=\"docClass\">move</a> event.</p>\n",
2997       "params": [
2998         {
2999           "type": "Number",
3000           "name": "x",
3001           "doc": "<p>The new x position</p>\n",
3002           "optional": false
3003         },
3004         {
3005           "type": "Number",
3006           "name": "y",
3007           "doc": "<p>The new y position</p>\n",
3008           "optional": false
3009         },
3010         {
3011           "type": "Mixed",
3012           "name": "animate",
3013           "doc": "<p>If passed, the Component is <i>animated</i> into its new position. If this parameter\nis a number, it is used as the animation duration in milliseconds.</p>\n",
3014           "optional": false
3015         }
3016       ],
3017       "return": {
3018         "type": "Ext.Component",
3019         "doc": "<p>this</p>\n"
3020       },
3021       "private": false,
3022       "static": false,
3023       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3024       "linenr": 501,
3025       "html_filename": "Component.html",
3026       "href": "Component.html#Ext-Component-method-setPagePosition",
3027       "shortDoc": "Sets the page XY position of the component.  To set the left and top instead, use setPosition.\nThis method fires the ..."
3028     },
3029     {
3030       "tagname": "method",
3031       "name": "setPosition",
3032       "member": "Ext.Component",
3033       "doc": "<p>Sets the left and top of the component.  To set the page XY position instead, use <a href=\"#/api/Ext.chart.Chart-method-setPagePosition\" rel=\"Ext.chart.Chart-method-setPagePosition\" class=\"docClass\">setPagePosition</a>.\nThis method fires the <a href=\"#/api/Ext.chart.Chart-event-move\" rel=\"Ext.chart.Chart-event-move\" class=\"docClass\">move</a> event.</p>\n",
3034       "params": [
3035         {
3036           "type": "Number",
3037           "name": "left",
3038           "doc": "<p>The new left</p>\n",
3039           "optional": false
3040         },
3041         {
3042           "type": "Number",
3043           "name": "top",
3044           "doc": "<p>The new top</p>\n",
3045           "optional": false
3046         },
3047         {
3048           "type": "Mixed",
3049           "name": "animate",
3050           "doc": "<p>If true, the Component is <i>animated</i> into its new position. You may also pass an animation configuration.</p>\n",
3051           "optional": false
3052         }
3053       ],
3054       "return": {
3055         "type": "Ext.Component",
3056         "doc": "<p>this</p>\n"
3057       },
3058       "private": false,
3059       "static": false,
3060       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3061       "linenr": 417,
3062       "html_filename": "Component.html",
3063       "href": "Component.html#Ext-Component-method-setPosition",
3064       "shortDoc": "Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.\nThis method fires ..."
3065     },
3066     {
3067       "tagname": "method",
3068       "name": "setSize",
3069       "member": "Ext.AbstractComponent",
3070       "doc": "<p>Sets the width and height of this Component. This method fires the <a href=\"#/api/Ext.chart.Chart-event-resize\" rel=\"Ext.chart.Chart-event-resize\" class=\"docClass\">resize</a> event. This method can accept\neither width and height as separate arguments, or you can pass a size object like <code>{width:10, height:20}</code>.</p>\n",
3071       "params": [
3072         {
3073           "type": "Mixed",
3074           "name": "width",
3075           "doc": "<p>The new width to set. This may be one of:<div class=\"mdetail-params\"><ul>\n<li>A Number specifying the new width in the <a href=\"#/api/Ext.chart.Chart-method-getEl\" rel=\"Ext.chart.Chart-method-getEl\" class=\"docClass\">Element</a>'s <a href=\"#/api/Ext.core.Element-property-defaultUnit\" rel=\"Ext.core.Element-property-defaultUnit\" class=\"docClass\">Ext.core.Element.defaultUnit</a>s (by default, pixels).</li>\n<li>A String used to set the CSS width style.</li>\n<li>A size object in the format <code>{width: widthValue, height: heightValue}</code>.</li>\n<li><code>undefined</code> to leave the width unchanged.</li>\n</ul></div></p>\n",
3076           "optional": false
3077         },
3078         {
3079           "type": "Mixed",
3080           "name": "height",
3081           "doc": "<p>The new height to set (not required if a size object is passed as the first arg).\nThis may be one of:<div class=\"mdetail-params\"><ul>\n<li>A Number specifying the new height in the <a href=\"#/api/Ext.chart.Chart-method-getEl\" rel=\"Ext.chart.Chart-method-getEl\" class=\"docClass\">Element</a>'s <a href=\"#/api/Ext.core.Element-property-defaultUnit\" rel=\"Ext.core.Element-property-defaultUnit\" class=\"docClass\">Ext.core.Element.defaultUnit</a>s (by default, pixels).</li>\n<li>A String used to set the CSS height style. Animation may <b>not</b> be used.</li>\n<li><code>undefined</code> to leave the height unchanged.</li>\n</ul></div></p>\n",
3082           "optional": false
3083         }
3084       ],
3085       "return": {
3086         "type": "Ext.Component",
3087         "doc": "<p>this</p>\n"
3088       },
3089       "private": false,
3090       "static": false,
3091       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3092       "linenr": 2340,
3093       "html_filename": "AbstractComponent.html",
3094       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setSize",
3095       "shortDoc": "Sets the width and height of this Component. This method fires the resize event. This method can accept\neither width ..."
3096     },
3097     {
3098       "tagname": "method",
3099       "name": "setUI",
3100       "member": "Ext.AbstractComponent",
3101       "doc": "<p>Sets the UI for the component. This will remove any existing UIs on the component. It will also\nloop through any uiCls set on the component and rename them so they include the new UI</p>\n",
3102       "params": [
3103         {
3104           "type": "String",
3105           "name": "ui",
3106           "doc": "<p>The new UI for the component</p>\n",
3107           "optional": false
3108         }
3109       ],
3110       "return": {
3111         "type": "void",
3112         "doc": "\n"
3113       },
3114       "private": false,
3115       "static": false,
3116       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3117       "linenr": 1309,
3118       "html_filename": "AbstractComponent.html",
3119       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setUI",
3120       "shortDoc": "Sets the UI for the component. This will remove any existing UIs on the component. It will also\nloop through any uiCl..."
3121     },
3122     {
3123       "tagname": "method",
3124       "name": "setVisible",
3125       "member": "Ext.AbstractComponent",
3126       "doc": "<p>Convenience function to hide or show this component by boolean.</p>\n",
3127       "params": [
3128         {
3129           "type": "Boolean",
3130           "name": "visible",
3131           "doc": "<p>True to show, false to hide</p>\n",
3132           "optional": false
3133         }
3134       ],
3135       "return": {
3136         "type": "Ext.Component",
3137         "doc": "<p>this</p>\n"
3138       },
3139       "private": false,
3140       "static": false,
3141       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3142       "linenr": 2006,
3143       "html_filename": "AbstractComponent.html",
3144       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setVisible",
3145       "shortDoc": "<p>Convenience function to hide or show this component by boolean.</p>\n"
3146     },
3147     {
3148       "tagname": "method",
3149       "name": "setWidth",
3150       "member": "Ext.AbstractComponent",
3151       "doc": "<p>Sets the width of the component.  This method fires the <a href=\"#/api/Ext.chart.Chart-event-resize\" rel=\"Ext.chart.Chart-event-resize\" class=\"docClass\">resize</a> event.</p>\n",
3152       "params": [
3153         {
3154           "type": "Number",
3155           "name": "width",
3156           "doc": "<p>The new width to setThis may be one of:<div class=\"mdetail-params\"><ul>\n<li>A Number specifying the new width in the <a href=\"#/api/Ext.chart.Chart-method-getEl\" rel=\"Ext.chart.Chart-method-getEl\" class=\"docClass\">Element</a>'s <a href=\"#/api/Ext.core.Element-property-defaultUnit\" rel=\"Ext.core.Element-property-defaultUnit\" class=\"docClass\">Ext.core.Element.defaultUnit</a>s (by default, pixels).</li>\n<li>A String used to set the CSS width style.</li>\n</ul></div></p>\n",
3157           "optional": false
3158         }
3159       ],
3160       "return": {
3161         "type": "Ext.Component",
3162         "doc": "<p>this</p>\n"
3163       },
3164       "private": false,
3165       "static": false,
3166       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3167       "linenr": 2538,
3168       "html_filename": "AbstractComponent.html",
3169       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setWidth",
3170       "shortDoc": "<p>Sets the width of the component.  This method fires the <a href=\"#/api/Ext.chart.Chart-event-resize\" rel=\"Ext.chart.Chart-event-resize\" class=\"docClass\">resize</a> event.</p>\n"
3171     },
3172     {
3173       "tagname": "method",
3174       "name": "show",
3175       "member": "Ext.Component",
3176       "doc": "<p>Shows this Component, rendering it first if <a href=\"#/api/Ext.chart.Chart-cfg-autoRender\" rel=\"Ext.chart.Chart-cfg-autoRender\" class=\"docClass\">autoRender</a> or {<a href=\"#/api/\"floating\" rel=\"\"floating\" class=\"docClass\">&quot;floating</a> are <code>true</code>.</p>\n\n\n<p>After being shown, a <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> Component (such as a <a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Ext.window.Window</a>), is activated it and brought to the front of\nits <a href=\"#/api/Ext.chart.Chart--ZIndexManager\" rel=\"Ext.chart.Chart--ZIndexManager\" class=\"docClass\">z-index stack</a>.</p>\n\n",
3177       "params": [
3178         {
3179           "type": "String/Element",
3180           "name": "animateTarget",
3181           "doc": "<p>Optional, and <b>only valid for <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> Components such as\n<a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a>s or <a href=\"#/api/Ext.tip.ToolTip\" rel=\"Ext.tip.ToolTip\" class=\"docClass\">ToolTip</a>s, or regular Components which have been configured\nwith <code>floating: true</code>.</b> The target from which the Component should\nanimate from while opening (defaults to null with no animation)</p>\n",
3182           "optional": false
3183         },
3184         {
3185           "type": "Function",
3186           "name": "callback",
3187           "doc": "<p>(optional) A callback function to call after the Component is displayed. Only necessary if animation was specified.</p>\n",
3188           "optional": true
3189         },
3190         {
3191           "type": "Object",
3192           "name": "scope",
3193           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the callback is executed. Defaults to this Component.</p>\n",
3194           "optional": true
3195         }
3196       ],
3197       "return": {
3198         "type": "Component",
3199         "doc": "<p>this</p>\n"
3200       },
3201       "private": false,
3202       "static": false,
3203       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3204       "linenr": 645,
3205       "html_filename": "Component.html",
3206       "href": "Component.html#Ext-Component-method-show",
3207       "shortDoc": "Shows this Component, rendering it first if autoRender or {&quot;floating are true.\n\n\nAfter being shown, a floating C..."
3208     },
3209     {
3210       "tagname": "method",
3211       "name": "stopAnimation",
3212       "member": "Ext.util.Animate",
3213       "doc": "<p>Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.</p>\n",
3214       "params": [
3215
3216       ],
3217       "return": {
3218         "type": "Ext.core.Element",
3219         "doc": "<p>The Element</p>\n"
3220       },
3221       "private": false,
3222       "static": false,
3223       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
3224       "linenr": 335,
3225       "html_filename": "Animate.html",
3226       "href": "Animate.html#Ext-util-Animate-method-stopAnimation",
3227       "shortDoc": "Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that ..."
3228     },
3229     {
3230       "tagname": "method",
3231       "name": "stopFx",
3232       "member": "Ext.util.Animate",
3233       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.chart.Chart-method-stopAnimation\" rel=\"Ext.chart.Chart-method-stopAnimation\" class=\"docClass\">stopAnimation</a>\nStops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.</p>\n",
3234       "params": [
3235
3236       ],
3237       "return": {
3238         "type": "Ext.core.Element",
3239         "doc": "<p>The Element</p>\n"
3240       },
3241       "private": false,
3242       "static": false,
3243       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
3244       "linenr": 326,
3245       "html_filename": "Animate.html",
3246       "href": "Animate.html#Ext-util-Animate-method-stopFx",
3247       "shortDoc": "@deprecated 4.0 Replaced by stopAnimation\nStops any running effects and clears this object's internal effects queue i..."
3248     },
3249     {
3250       "tagname": "method",
3251       "name": "suspendEvents",
3252       "member": "Ext.util.Observable",
3253       "doc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.chart.Chart-method-resumeEvents\" rel=\"Ext.chart.Chart-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
3254       "params": [
3255         {
3256           "type": "Boolean",
3257           "name": "queueSuspended",
3258           "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.chart.Chart-method-resumeEvents\" rel=\"Ext.chart.Chart-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events;</p>\n",
3259           "optional": false
3260         }
3261       ],
3262       "return": {
3263         "type": "void",
3264         "doc": "\n"
3265       },
3266       "private": false,
3267       "static": false,
3268       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3269       "linenr": 490,
3270       "html_filename": "Observable.html",
3271       "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
3272       "shortDoc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.chart.Chart-method-resumeEvents\" rel=\"Ext.chart.Chart-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n"
3273     },
3274     {
3275       "tagname": "method",
3276       "name": "syncFx",
3277       "member": "Ext.util.Animate",
3278       "doc": "<p>Ensures that all effects queued after syncFx is called on this object are\nrun concurrently.  This is the opposite of <a href=\"#/api/Ext.chart.Chart-method-sequenceFx\" rel=\"Ext.chart.Chart-method-sequenceFx\" class=\"docClass\">sequenceFx</a>.</p>\n",
3279       "params": [
3280
3281       ],
3282       "return": {
3283         "type": "Object",
3284         "doc": "<p>this</p>\n"
3285       },
3286       "private": false,
3287       "static": false,
3288       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
3289       "linenr": 345,
3290       "html_filename": "Animate.html",
3291       "href": "Animate.html#Ext-util-Animate-method-syncFx",
3292       "shortDoc": "Ensures that all effects queued after syncFx is called on this object are\nrun concurrently.  This is the opposite of ..."
3293     },
3294     {
3295       "tagname": "method",
3296       "name": "toBack",
3297       "member": "Ext.util.Floating",
3298       "doc": "<p>Sends this Component to the back of (lower z-index than) any other visible windows</p>\n",
3299       "params": [
3300
3301       ],
3302       "return": {
3303         "type": "Component",
3304         "doc": "<p>this</p>\n"
3305       },
3306       "private": false,
3307       "static": false,
3308       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
3309       "linenr": 240,
3310       "html_filename": "Floating.html",
3311       "href": "Floating.html#Ext-util-Floating-method-toBack",
3312       "shortDoc": "<p>Sends this Component to the back of (lower z-index than) any other visible windows</p>\n"
3313     },
3314     {
3315       "tagname": "method",
3316       "name": "toFront",
3317       "member": "Ext.util.Floating",
3318       "doc": "<p>Brings this floating Component to the front of any other visible, floating Components managed by the same <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">ZIndexManager</a></p>\n\n\n<p>If this Component is modal, inserts the modal mask just below this Component in the z-index stack.</p>\n\n",
3319       "params": [
3320         {
3321           "type": "Boolean",
3322           "name": "preventFocus",
3323           "doc": "<p>(optional) Specify <code>true</code> to prevent the Component from being focused.</p>\n",
3324           "optional": true
3325         }
3326       ],
3327       "return": {
3328         "type": "Component",
3329         "doc": "<p>this</p>\n"
3330       },
3331       "private": false,
3332       "static": false,
3333       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
3334       "linenr": 188,
3335       "html_filename": "Floating.html",
3336       "href": "Floating.html#Ext-util-Floating-method-toFront",
3337       "shortDoc": "Brings this floating Component to the front of any other visible, floating Components managed by the same ZIndexManag..."
3338     },
3339     {
3340       "tagname": "method",
3341       "name": "un",
3342       "member": "Ext.util.Observable",
3343       "doc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.chart.Chart-method-removeListener\" rel=\"Ext.chart.Chart-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n",
3344       "params": [
3345         {
3346           "type": "String",
3347           "name": "eventName",
3348           "doc": "<p>The type of event the handler was associated with.</p>\n",
3349           "optional": false
3350         },
3351         {
3352           "type": "Function",
3353           "name": "handler",
3354           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.chart.Chart-method-addListener\" rel=\"Ext.chart.Chart-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
3355           "optional": false
3356         },
3357         {
3358           "type": "Object",
3359           "name": "scope",
3360           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
3361           "optional": true
3362         }
3363       ],
3364       "return": {
3365         "type": "void",
3366         "doc": "\n"
3367       },
3368       "private": false,
3369       "static": false,
3370       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3371       "linenr": 608,
3372       "html_filename": "Observable.html",
3373       "href": "Observable.html#Ext-util-Observable-method-un",
3374       "shortDoc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.chart.Chart-method-removeListener\" rel=\"Ext.chart.Chart-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n"
3375     },
3376     {
3377       "tagname": "method",
3378       "name": "up",
3379       "member": "Ext.AbstractComponent",
3380       "doc": "<p>Walks up the <code>ownerCt</code> axis looking for an ancestor Container which matches\nthe passed simple selector.</p>\n\n\n<p>Example:\n<pre><code>var owningTabPanel = grid.up('tabpanel');\n</code></pre>\n\n",
3381       "params": [
3382         {
3383           "type": "String",
3384           "name": "selector",
3385           "doc": "<p>Optional. The simple selector to test.</p>\n",
3386           "optional": false
3387         }
3388       ],
3389       "return": {
3390         "type": "Container",
3391         "doc": "<p>The matching ancestor Container (or <code>undefined</code> if no match was found).</p>\n"
3392       },
3393       "private": false,
3394       "static": false,
3395       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3396       "linenr": 1728,
3397       "html_filename": "AbstractComponent.html",
3398       "href": "AbstractComponent.html#Ext-AbstractComponent-method-up",
3399       "shortDoc": "Walks up the ownerCt axis looking for an ancestor Container which matches\nthe passed simple selector.\n\n\nExample:\nvar ..."
3400     },
3401     {
3402       "tagname": "method",
3403       "name": "update",
3404       "member": "Ext.AbstractComponent",
3405       "doc": "<p>Update the content area of a component.</p>\n",
3406       "params": [
3407         {
3408           "type": "Mixed",
3409           "name": "htmlOrData",
3410           "doc": "<p>If this component has been configured with a template via the tpl config\nthen it will use this argument as data to populate the template.\nIf this component was not configured with a template, the components\ncontent area will be updated via <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Ext.core.Element</a> update</p>\n",
3411           "optional": false
3412         },
3413         {
3414           "type": "Boolean",
3415           "name": "loadScripts",
3416           "doc": "<p>(optional) Only legitimate when using the html configuration. Defaults to false</p>\n",
3417           "optional": true
3418         },
3419         {
3420           "type": "Function",
3421           "name": "callback",
3422           "doc": "<p>(optional) Only legitimate when using the html configuration. Callback to execute when scripts have finished loading</p>\n",
3423           "optional": true
3424         }
3425       ],
3426       "return": {
3427         "type": "void",
3428         "doc": "\n"
3429       },
3430       "private": false,
3431       "static": false,
3432       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3433       "linenr": 1974,
3434       "html_filename": "AbstractComponent.html",
3435       "href": "AbstractComponent.html#Ext-AbstractComponent-method-update",
3436       "shortDoc": "<p>Update the content area of a component.</p>\n"
3437     },
3438     {
3439       "tagname": "method",
3440       "name": "updateBox",
3441       "member": "Ext.Component",
3442       "doc": "<p>Sets the current box measurements of the component's underlying element.</p>\n",
3443       "params": [
3444         {
3445           "type": "Object",
3446           "name": "box",
3447           "doc": "<p>An object in the format {x, y, width, height}</p>\n",
3448           "optional": false
3449         }
3450       ],
3451       "return": {
3452         "type": "Ext.Component",
3453         "doc": "<p>this</p>\n"
3454       },
3455       "private": false,
3456       "static": false,
3457       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3458       "linenr": 551,
3459       "html_filename": "Component.html",
3460       "href": "Component.html#Ext-Component-method-updateBox",
3461       "shortDoc": "<p>Sets the current box measurements of the component's underlying element.</p>\n"
3462     }
3463   ],
3464   "property": [
3465     {
3466       "tagname": "property",
3467       "name": "draggable",
3468       "member": "Ext.AbstractComponent",
3469       "type": "Boolean",
3470       "doc": "<p>Read-only property indicating whether or not the component can be dragged</p>\n",
3471       "private": false,
3472       "static": false,
3473       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3474       "linenr": 374,
3475       "html_filename": "AbstractComponent.html",
3476       "href": "AbstractComponent.html#Ext-AbstractComponent-property-draggable"
3477     },
3478     {
3479       "tagname": "property",
3480       "name": "floatParent",
3481       "member": "Ext.Component",
3482       "type": "Ext.Container",
3483       "doc": "<p>Optional. Only present for <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> Components which were inserted as descendant items of floating Containers.</p>\n\n\n<p>Floating Components that are programatically <a href=\"#/api/Ext.Component-event-render\" rel=\"Ext.Component-event-render\" class=\"docClass\">rendered</a> will not have a <code>floatParent</code> property.</p>\n\n\n<p>For <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> Components which are child items of a Container, the floatParent will be the floating ancestor Container which is\nresponsible for the base z-index value of all its floating descendants. It provides a <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">ZIndexManager</a> which provides\nz-indexing services for all its descendant floating Components.</p>\n\n\n<p>For example, the dropdown <a href=\"#/api/Ext.view.BoundList\" rel=\"Ext.view.BoundList\" class=\"docClass\">BoundList</a> of a ComboBox which is in a Window will have the Window as its\n<code>floatParent</code></p>\n\n\n<p>See <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> and <a href=\"#/api/Ext.chart.Chart-property-zIndexManager\" rel=\"Ext.chart.Chart-property-zIndexManager\" class=\"docClass\">zIndexManager</a></p>\n\n",
3484       "private": false,
3485       "static": false,
3486       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3487       "linenr": 221,
3488       "html_filename": "Component.html",
3489       "href": "Component.html#Ext-Component-property-floatParent",
3490       "shortDoc": "Optional. Only present for floating Components which were inserted as descendant items of floating Containers.\n\n\nFloa..."
3491     },
3492     {
3493       "tagname": "property",
3494       "name": "frameSize",
3495       "member": "Ext.AbstractComponent",
3496       "type": "Object",
3497       "doc": "<p>Read-only property indicating the width of any framing elements which were added within the encapsulating element\nto provide graphical, rounded borders. See the <a href=\"#/api/Ext.chart.Chart-cfg-frame\" rel=\"Ext.chart.Chart-cfg-frame\" class=\"docClass\">frame</a> config.</p>\n\n\n<p> This is an object containing the frame width in pixels for all four sides of the Component containing\nthe following properties:</p>\n\n\n<div class=\"mdetail-params\"><ul>\n<li><code>top</code> The width of the top framing element in pixels.</li>\n<li><code>right</code> The width of the right framing element in pixels.</li>\n<li><code>bottom</code> The width of the bottom framing element in pixels.</li>\n<li><code>left</code> The width of the left framing element in pixels.</li>\n</ul></div>\n\n",
3498       "private": false,
3499       "static": false,
3500       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3501       "linenr": 207,
3502       "html_filename": "AbstractComponent.html",
3503       "href": "AbstractComponent.html#Ext-AbstractComponent-property-frameSize",
3504       "shortDoc": "Read-only property indicating the width of any framing elements which were added within the encapsulating element\nto ..."
3505     },
3506     {
3507       "tagname": "property",
3508       "name": "maskOnDisable",
3509       "member": "Ext.AbstractComponent",
3510       "type": "Boolean",
3511       "doc": "<p>This is an internal flag that you use when creating custom components.\nBy default this is set to true which means that every component gets a mask when its disabled.\nComponents like FieldContainer, FieldSet, Field, Button, Tab override this property to false\nsince they want to implement custom disable logic.</p>\n",
3512       "private": false,
3513       "static": false,
3514       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3515       "linenr": 513,
3516       "html_filename": "AbstractComponent.html",
3517       "href": "AbstractComponent.html#Ext-AbstractComponent-property-maskOnDisable",
3518       "shortDoc": "This is an internal flag that you use when creating custom components.\nBy default this is set to true which means tha..."
3519     },
3520     {
3521       "tagname": "property",
3522       "name": "ownerCt",
3523       "member": "Ext.AbstractComponent",
3524       "type": "Ext.Container",
3525       "doc": "<p>This Component's owner <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Container</a> (defaults to undefined, and is set automatically when\nthis Component is added to a Container).  Read-only.</p>\n\n<p><b>Note</b>: to access items within the Container see <tt><a href=\"#/api/Ext.chart.Chart-cfg-itemId\" rel=\"Ext.chart.Chart-cfg-itemId\" class=\"docClass\">itemId</a></tt>.</p>\n\n",
3526       "private": false,
3527       "static": false,
3528       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3529       "linenr": 101,
3530       "html_filename": "AbstractComponent.html",
3531       "href": "AbstractComponent.html#Ext-AbstractComponent-property-ownerCt",
3532       "shortDoc": "This Component's owner Container (defaults to undefined, and is set automatically when\nthis Component is added to a C..."
3533     },
3534     {
3535       "tagname": "property",
3536       "name": "rendered",
3537       "member": "Ext.AbstractComponent",
3538       "type": "Boolean",
3539       "doc": "<p>Read-only property indicating whether or not the component has been rendered.</p>\n",
3540       "private": false,
3541       "static": false,
3542       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3543       "linenr": 500,
3544       "html_filename": "AbstractComponent.html",
3545       "href": "AbstractComponent.html#Ext-AbstractComponent-property-rendered"
3546     },
3547     {
3548       "tagname": "property",
3549       "name": "zIndexManager",
3550       "member": "Ext.Component",
3551       "type": "Ext.ZIndexManager",
3552       "doc": "<p>Optional. Only present for <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> Components after they have been rendered.</p>\n\n\n<p>A reference to the ZIndexManager which is managing this Component's z-index.</p>\n\n\n<p>The <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">ZIndexManager</a> maintains a stack of floating Component z-indices, and also provides a single modal\nmask which is insert just beneath the topmost visible modal floating Component.</p>\n\n\n<p>Floating Components may be <a href=\"#/api/Ext.chart.Chart-method-toFront\" rel=\"Ext.chart.Chart-method-toFront\" class=\"docClass\">brought to the front</a> or <a href=\"#/api/Ext.chart.Chart-method-toBack\" rel=\"Ext.chart.Chart-method-toBack\" class=\"docClass\">sent to the back</a> of the z-index stack.</p>\n\n\n<p>This defaults to the global <a href=\"#/api/Ext.WindowManager\" rel=\"Ext.WindowManager\" class=\"docClass\">ZIndexManager</a> for floating Components that are programatically\n<a href=\"#/api/Ext.Component-event-render\" rel=\"Ext.Component-event-render\" class=\"docClass\">rendered</a>.</p>\n\n\n<p>For <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> Components which are added to a Container, the ZIndexManager is acquired from the first ancestor Container found\nwhich is floating, or if not found the global <a href=\"#/api/Ext.WindowManager\" rel=\"Ext.WindowManager\" class=\"docClass\">ZIndexManager</a> is used.</p>\n\n\n<p>See <a href=\"#/api/Ext.chart.Chart-cfg-floating\" rel=\"Ext.chart.Chart-cfg-floating\" class=\"docClass\">floating</a> and <a href=\"#/api/Ext.chart.Chart-property-floatParent\" rel=\"Ext.chart.Chart-property-floatParent\" class=\"docClass\">floatParent</a></p>\n\n",
3553       "private": false,
3554       "static": false,
3555       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3556       "linenr": 206,
3557       "html_filename": "Component.html",
3558       "href": "Component.html#Ext-Component-property-zIndexManager",
3559       "shortDoc": "Optional. Only present for floating Components after they have been rendered.\n\n\nA reference to the ZIndexManager whic..."
3560     }
3561   ],
3562   "event": [
3563     {
3564       "tagname": "event",
3565       "name": "activate",
3566       "member": "Ext.AbstractComponent",
3567       "doc": "<p>Fires after a Component has been visually activated.</p>\n",
3568       "params": [
3569         {
3570           "type": "Ext.Component",
3571           "name": "this",
3572           "doc": "\n",
3573           "optional": false
3574         }
3575       ],
3576       "private": false,
3577       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3578       "linenr": 540,
3579       "html_filename": "AbstractComponent.html",
3580       "href": "AbstractComponent.html#Ext-AbstractComponent-event-activate",
3581       "shortDoc": "<p>Fires after a Component has been visually activated.</p>\n"
3582     },
3583     {
3584       "tagname": "event",
3585       "name": "added",
3586       "member": "Ext.AbstractComponent",
3587       "doc": "<p>Fires after a Component had been added to a Container.</p>\n",
3588       "params": [
3589         {
3590           "type": "Ext.Component",
3591           "name": "this",
3592           "doc": "\n",
3593           "optional": false
3594         },
3595         {
3596           "type": "Ext.container.Container",
3597           "name": "container",
3598           "doc": "<p>Parent Container</p>\n",
3599           "optional": false
3600         },
3601         {
3602           "type": "Number",
3603           "name": "pos",
3604           "doc": "<p>position of Component</p>\n",
3605           "optional": false
3606         }
3607       ],
3608       "private": false,
3609       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3610       "linenr": 560,
3611       "html_filename": "AbstractComponent.html",
3612       "href": "AbstractComponent.html#Ext-AbstractComponent-event-added",
3613       "shortDoc": "<p>Fires after a Component had been added to a Container.</p>\n"
3614     },
3615     {
3616       "tagname": "event",
3617       "name": "afterrender",
3618       "member": "Ext.AbstractComponent",
3619       "doc": "<p>Fires after the component rendering is finished.</p>\n\n\n<p>The afterrender event is fired after this Component has been <a href=\"#/api/Ext.chart.Chart-property-rendered\" rel=\"Ext.chart.Chart-property-rendered\" class=\"docClass\">rendered</a>, been postprocesed\nby any afterRender method defined for the Component.</p>\n\n",
3620       "params": [
3621         {
3622           "type": "Ext.Component",
3623           "name": "this",
3624           "doc": "\n",
3625           "optional": false
3626         }
3627       ],
3628       "private": false,
3629       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3630       "linenr": 627,
3631       "html_filename": "AbstractComponent.html",
3632       "href": "AbstractComponent.html#Ext-AbstractComponent-event-afterrender",
3633       "shortDoc": "Fires after the component rendering is finished.\n\n\nThe afterrender event is fired after this Component has been rende..."
3634     },
3635     {
3636       "tagname": "event",
3637       "name": "beforeactivate",
3638       "member": "Ext.AbstractComponent",
3639       "doc": "<p>Fires before a Component has been visually activated.\nReturning false from an event listener can prevent the activate\nfrom occurring.</p>\n",
3640       "params": [
3641         {
3642           "type": "Ext.Component",
3643           "name": "this",
3644           "doc": "\n",
3645           "optional": false
3646         }
3647       ],
3648       "private": false,
3649       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3650       "linenr": 532,
3651       "html_filename": "AbstractComponent.html",
3652       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeactivate",
3653       "shortDoc": "Fires before a Component has been visually activated.\nReturning false from an event listener can prevent the activate..."
3654     },
3655     {
3656       "tagname": "event",
3657       "name": "beforedeactivate",
3658       "member": "Ext.AbstractComponent",
3659       "doc": "<p>Fires before a Component has been visually deactivated.\nReturning false from an event listener can prevent the deactivate\nfrom occurring.</p>\n",
3660       "params": [
3661         {
3662           "type": "Ext.Component",
3663           "name": "this",
3664           "doc": "\n",
3665           "optional": false
3666         }
3667       ],
3668       "private": false,
3669       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3670       "linenr": 546,
3671       "html_filename": "AbstractComponent.html",
3672       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedeactivate",
3673       "shortDoc": "Fires before a Component has been visually deactivated.\nReturning false from an event listener can prevent the deacti..."
3674     },
3675     {
3676       "tagname": "event",
3677       "name": "beforedestroy",
3678       "member": "Ext.AbstractComponent",
3679       "doc": "<p>Fires before the component is <a href=\"#/api/Ext.chart.Chart-event-destroy\" rel=\"Ext.chart.Chart-event-destroy\" class=\"docClass\">destroy</a>ed. Return false from an event handler to stop the <a href=\"#/api/Ext.chart.Chart-event-destroy\" rel=\"Ext.chart.Chart-event-destroy\" class=\"docClass\">destroy</a>.</p>\n",
3680       "params": [
3681         {
3682           "type": "Ext.Component",
3683           "name": "this",
3684           "doc": "\n",
3685           "optional": false
3686         }
3687       ],
3688       "private": false,
3689       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3690       "linenr": 635,
3691       "html_filename": "AbstractComponent.html",
3692       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedestroy",
3693       "shortDoc": "<p>Fires before the component is <a href=\"#/api/Ext.chart.Chart-event-destroy\" rel=\"Ext.chart.Chart-event-destroy\" class=\"docClass\">destroy</a>ed. Return false from an event handler to stop the <a href=\"#/api/Ext.chart.Chart-event-destroy\" rel=\"Ext.chart.Chart-event-destroy\" class=\"docClass\">destroy</a>.</p>\n"
3694     },
3695     {
3696       "tagname": "event",
3697       "name": "beforehide",
3698       "member": "Ext.AbstractComponent",
3699       "doc": "<p>Fires before the component is hidden when calling the <a href=\"#/api/Ext.chart.Chart-event-hide\" rel=\"Ext.chart.Chart-event-hide\" class=\"docClass\">hide</a> method.\nReturn false from an event handler to stop the hide.</p>\n",
3700       "params": [
3701         {
3702           "type": "Ext.Component",
3703           "name": "this",
3704           "doc": "\n",
3705           "optional": false
3706         }
3707       ],
3708       "private": false,
3709       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3710       "linenr": 593,
3711       "html_filename": "AbstractComponent.html",
3712       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforehide",
3713       "shortDoc": "<p>Fires before the component is hidden when calling the <a href=\"#/api/Ext.chart.Chart-event-hide\" rel=\"Ext.chart.Chart-event-hide\" class=\"docClass\">hide</a> method.\nReturn false from an event handler to stop the hide.</p>\n"
3714     },
3715     {
3716       "tagname": "event",
3717       "name": "beforerefresh",
3718       "member": "Ext.chart.Chart",
3719       "doc": "<p>Fires before a refresh to the chart data is called.  If the beforerefresh handler returns\n<tt>false</tt> the <a href=\"#/api/Ext.chart.Chart-event-refresh\" rel=\"Ext.chart.Chart-event-refresh\" class=\"docClass\">refresh</a> action will be cancelled.</p>\n",
3720       "params": [
3721         {
3722           "type": "Chart",
3723           "name": "this",
3724           "doc": "\n",
3725           "optional": false
3726         }
3727       ],
3728       "private": false,
3729       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
3730       "linenr": 230,
3731       "html_filename": "Chart.html",
3732       "href": "Chart.html#Ext-chart-Chart-event-beforerefresh",
3733       "shortDoc": "Fires before a refresh to the chart data is called.  If the beforerefresh handler returns\nfalse the refresh action wi..."
3734     },
3735     {
3736       "tagname": "event",
3737       "name": "beforerender",
3738       "member": "Ext.AbstractComponent",
3739       "doc": "<p>Fires before the component is <a href=\"#/api/Ext.chart.Chart-property-rendered\" rel=\"Ext.chart.Chart-property-rendered\" class=\"docClass\">rendered</a>. Return false from an\nevent handler to stop the <a href=\"#/api/Ext.chart.Chart-event-render\" rel=\"Ext.chart.Chart-event-render\" class=\"docClass\">render</a>.</p>\n",
3740       "params": [
3741         {
3742           "type": "Ext.Component",
3743           "name": "this",
3744           "doc": "\n",
3745           "optional": false
3746         }
3747       ],
3748       "private": false,
3749       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3750       "linenr": 614,
3751       "html_filename": "AbstractComponent.html",
3752       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforerender",
3753       "shortDoc": "<p>Fires before the component is <a href=\"#/api/Ext.chart.Chart-property-rendered\" rel=\"Ext.chart.Chart-property-rendered\" class=\"docClass\">rendered</a>. Return false from an\nevent handler to stop the <a href=\"#/api/Ext.chart.Chart-event-render\" rel=\"Ext.chart.Chart-event-render\" class=\"docClass\">render</a>.</p>\n"
3754     },
3755     {
3756       "tagname": "event",
3757       "name": "beforeshow",
3758       "member": "Ext.AbstractComponent",
3759       "doc": "<p>Fires before the component is shown when calling the <a href=\"#/api/Ext.chart.Chart-event-show\" rel=\"Ext.chart.Chart-event-show\" class=\"docClass\">show</a> method.\nReturn false from an event handler to stop the show.</p>\n",
3760       "params": [
3761         {
3762           "type": "Ext.Component",
3763           "name": "this",
3764           "doc": "\n",
3765           "optional": false
3766         }
3767       ],
3768       "private": false,
3769       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3770       "linenr": 580,
3771       "html_filename": "AbstractComponent.html",
3772       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeshow",
3773       "shortDoc": "<p>Fires before the component is shown when calling the <a href=\"#/api/Ext.chart.Chart-event-show\" rel=\"Ext.chart.Chart-event-show\" class=\"docClass\">show</a> method.\nReturn false from an event handler to stop the show.</p>\n"
3774     },
3775     {
3776       "tagname": "event",
3777       "name": "beforestaterestore",
3778       "member": "Ext.state.Stateful",
3779       "doc": "<p>Fires before the state of the object is restored. Return false from an event handler to stop the restore.</p>\n",
3780       "params": [
3781         {
3782           "type": "Ext.state.Stateful",
3783           "name": "this",
3784           "doc": "\n",
3785           "optional": false
3786         },
3787         {
3788           "type": "Object",
3789           "name": "state",
3790           "doc": "<p>The hash of state values returned from the StateProvider. If this\nevent is not vetoed, then the state object is passed to <b><tt>applyState</tt></b>. By default,\nthat simply copies property values into this object. The method maybe overriden to\nprovide custom state restoration.</p>\n",
3791           "optional": false
3792         }
3793       ],
3794       "private": false,
3795       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
3796       "linenr": 101,
3797       "html_filename": "Stateful.html",
3798       "href": "Stateful.html#Ext-state-Stateful-event-beforestaterestore",
3799       "shortDoc": "<p>Fires before the state of the object is restored. Return false from an event handler to stop the restore.</p>\n"
3800     },
3801     {
3802       "tagname": "event",
3803       "name": "beforestatesave",
3804       "member": "Ext.state.Stateful",
3805       "doc": "<p>Fires before the state of the object is saved to the configured state provider. Return false to stop the save.</p>\n",
3806       "params": [
3807         {
3808           "type": "Ext.state.Stateful",
3809           "name": "this",
3810           "doc": "\n",
3811           "optional": false
3812         },
3813         {
3814           "type": "Object",
3815           "name": "state",
3816           "doc": "<p>The hash of state values. This is determined by calling\n<b><tt>getState()</tt></b> on the object. This method must be provided by the\ndeveloper to return whetever representation of state is required, by default, <a href=\"#/api/Ext.state.Stateful\" rel=\"Ext.state.Stateful\" class=\"docClass\">Ext.state.Stateful</a>\nhas a null implementation.</p>\n",
3817           "optional": false
3818         }
3819       ],
3820       "private": false,
3821       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
3822       "linenr": 122,
3823       "html_filename": "Stateful.html",
3824       "href": "Stateful.html#Ext-state-Stateful-event-beforestatesave",
3825       "shortDoc": "<p>Fires before the state of the object is saved to the configured state provider. Return false to stop the save.</p>\n"
3826     },
3827     {
3828       "tagname": "event",
3829       "name": "deactivate",
3830       "member": "Ext.AbstractComponent",
3831       "doc": "<p>Fires after a Component has been visually deactivated.</p>\n",
3832       "params": [
3833         {
3834           "type": "Ext.Component",
3835           "name": "this",
3836           "doc": "\n",
3837           "optional": false
3838         }
3839       ],
3840       "private": false,
3841       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3842       "linenr": 554,
3843       "html_filename": "AbstractComponent.html",
3844       "href": "AbstractComponent.html#Ext-AbstractComponent-event-deactivate",
3845       "shortDoc": "<p>Fires after a Component has been visually deactivated.</p>\n"
3846     },
3847     {
3848       "tagname": "event",
3849       "name": "destroy",
3850       "member": "Ext.AbstractComponent",
3851       "doc": "<p>Fires after the component is <a href=\"#/api/Ext.chart.Chart-event-destroy\" rel=\"Ext.chart.Chart-event-destroy\" class=\"docClass\">destroy</a>ed.</p>\n",
3852       "params": [
3853         {
3854           "type": "Ext.Component",
3855           "name": "this",
3856           "doc": "\n",
3857           "optional": false
3858         }
3859       ],
3860       "private": false,
3861       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3862       "linenr": 641,
3863       "html_filename": "AbstractComponent.html",
3864       "href": "AbstractComponent.html#Ext-AbstractComponent-event-destroy",
3865       "shortDoc": "<p>Fires after the component is <a href=\"#/api/Ext.chart.Chart-event-destroy\" rel=\"Ext.chart.Chart-event-destroy\" class=\"docClass\">destroy</a>ed.</p>\n"
3866     },
3867     {
3868       "tagname": "event",
3869       "name": "disable",
3870       "member": "Ext.AbstractComponent",
3871       "doc": "<p>Fires after the component is disabled.</p>\n",
3872       "params": [
3873         {
3874           "type": "Ext.Component",
3875           "name": "this",
3876           "doc": "\n",
3877           "optional": false
3878         }
3879       ],
3880       "private": false,
3881       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3882       "linenr": 568,
3883       "html_filename": "AbstractComponent.html",
3884       "href": "AbstractComponent.html#Ext-AbstractComponent-event-disable",
3885       "shortDoc": "<p>Fires after the component is disabled.</p>\n"
3886     },
3887     {
3888       "tagname": "event",
3889       "name": "enable",
3890       "member": "Ext.AbstractComponent",
3891       "doc": "<p>Fires after the component is enabled.</p>\n",
3892       "params": [
3893         {
3894           "type": "Ext.Component",
3895           "name": "this",
3896           "doc": "\n",
3897           "optional": false
3898         }
3899       ],
3900       "private": false,
3901       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3902       "linenr": 574,
3903       "html_filename": "AbstractComponent.html",
3904       "href": "AbstractComponent.html#Ext-AbstractComponent-event-enable",
3905       "shortDoc": "<p>Fires after the component is enabled.</p>\n"
3906     },
3907     {
3908       "tagname": "event",
3909       "name": "hide",
3910       "member": "Ext.AbstractComponent",
3911       "doc": "<p>Fires after the component is hidden.\nFires after the component is hidden when calling the <a href=\"#/api/Ext.chart.Chart-event-hide\" rel=\"Ext.chart.Chart-event-hide\" class=\"docClass\">hide</a> method.</p>\n",
3912       "params": [
3913         {
3914           "type": "Ext.Component",
3915           "name": "this",
3916           "doc": "\n",
3917           "optional": false
3918         }
3919       ],
3920       "private": false,
3921       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3922       "linenr": 600,
3923       "html_filename": "AbstractComponent.html",
3924       "href": "AbstractComponent.html#Ext-AbstractComponent-event-hide",
3925       "shortDoc": "<p>Fires after the component is hidden.\nFires after the component is hidden when calling the <a href=\"#/api/Ext.chart.Chart-event-hide\" rel=\"Ext.chart.Chart-event-hide\" class=\"docClass\">hide</a> method.</p>\n"
3926     },
3927     {
3928       "tagname": "event",
3929       "name": "move",
3930       "member": "Ext.AbstractComponent",
3931       "doc": "<p>Fires after the component is moved.</p>\n",
3932       "params": [
3933         {
3934           "type": "Ext.Component",
3935           "name": "this",
3936           "doc": "\n",
3937           "optional": false
3938         },
3939         {
3940           "type": "Number",
3941           "name": "x",
3942           "doc": "<p>The new x position</p>\n",
3943           "optional": false
3944         },
3945         {
3946           "type": "Number",
3947           "name": "y",
3948           "doc": "<p>The new y position</p>\n",
3949           "optional": false
3950         }
3951       ],
3952       "private": false,
3953       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3954       "linenr": 655,
3955       "html_filename": "AbstractComponent.html",
3956       "href": "AbstractComponent.html#Ext-AbstractComponent-event-move",
3957       "shortDoc": "<p>Fires after the component is moved.</p>\n"
3958     },
3959     {
3960       "tagname": "event",
3961       "name": "refresh",
3962       "member": "Ext.chart.Chart",
3963       "doc": "<p>Fires after the chart data has been refreshed.</p>\n",
3964       "params": [
3965         {
3966           "type": "Chart",
3967           "name": "this",
3968           "doc": "\n",
3969           "optional": false
3970         }
3971       ],
3972       "private": false,
3973       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
3974       "linenr": 237,
3975       "html_filename": "Chart.html",
3976       "href": "Chart.html#Ext-chart-Chart-event-refresh",
3977       "shortDoc": "<p>Fires after the chart data has been refreshed.</p>\n"
3978     },
3979     {
3980       "tagname": "event",
3981       "name": "removed",
3982       "member": "Ext.AbstractComponent",
3983       "doc": "<p>Fires when a component is removed from an Ext.container.Container</p>\n",
3984       "params": [
3985         {
3986           "type": "Ext.Component",
3987           "name": "this",
3988           "doc": "\n",
3989           "optional": false
3990         },
3991         {
3992           "type": "Ext.container.Container",
3993           "name": "ownerCt",
3994           "doc": "<p>Container which holds the component</p>\n",
3995           "optional": false
3996         }
3997       ],
3998       "private": false,
3999       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4000       "linenr": 607,
4001       "html_filename": "AbstractComponent.html",
4002       "href": "AbstractComponent.html#Ext-AbstractComponent-event-removed",
4003       "shortDoc": "<p>Fires when a component is removed from an Ext.container.Container</p>\n"
4004     },
4005     {
4006       "tagname": "event",
4007       "name": "render",
4008       "member": "Ext.AbstractComponent",
4009       "doc": "<p>Fires after the component markup is <a href=\"#/api/Ext.chart.Chart-property-rendered\" rel=\"Ext.chart.Chart-property-rendered\" class=\"docClass\">rendered</a>.</p>\n",
4010       "params": [
4011         {
4012           "type": "Ext.Component",
4013           "name": "this",
4014           "doc": "\n",
4015           "optional": false
4016         }
4017       ],
4018       "private": false,
4019       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4020       "linenr": 621,
4021       "html_filename": "AbstractComponent.html",
4022       "href": "AbstractComponent.html#Ext-AbstractComponent-event-render",
4023       "shortDoc": "<p>Fires after the component markup is <a href=\"#/api/Ext.chart.Chart-property-rendered\" rel=\"Ext.chart.Chart-property-rendered\" class=\"docClass\">rendered</a>.</p>\n"
4024     },
4025     {
4026       "tagname": "event",
4027       "name": "resize",
4028       "member": "Ext.AbstractComponent",
4029       "doc": "<p>Fires after the component is resized.</p>\n",
4030       "params": [
4031         {
4032           "type": "Ext.Component",
4033           "name": "this",
4034           "doc": "\n",
4035           "optional": false
4036         },
4037         {
4038           "type": "Number",
4039           "name": "adjWidth",
4040           "doc": "<p>The box-adjusted width that was set</p>\n",
4041           "optional": false
4042         },
4043         {
4044           "type": "Number",
4045           "name": "adjHeight",
4046           "doc": "<p>The box-adjusted height that was set</p>\n",
4047           "optional": false
4048         }
4049       ],
4050       "private": false,
4051       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4052       "linenr": 647,
4053       "html_filename": "AbstractComponent.html",
4054       "href": "AbstractComponent.html#Ext-AbstractComponent-event-resize",
4055       "shortDoc": "<p>Fires after the component is resized.</p>\n"
4056     },
4057     {
4058       "tagname": "event",
4059       "name": "show",
4060       "member": "Ext.AbstractComponent",
4061       "doc": "<p>Fires after the component is shown when calling the <a href=\"#/api/Ext.chart.Chart-event-show\" rel=\"Ext.chart.Chart-event-show\" class=\"docClass\">show</a> method.</p>\n",
4062       "params": [
4063         {
4064           "type": "Ext.Component",
4065           "name": "this",
4066           "doc": "\n",
4067           "optional": false
4068         }
4069       ],
4070       "private": false,
4071       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4072       "linenr": 587,
4073       "html_filename": "AbstractComponent.html",
4074       "href": "AbstractComponent.html#Ext-AbstractComponent-event-show",
4075       "shortDoc": "<p>Fires after the component is shown when calling the <a href=\"#/api/Ext.chart.Chart-event-show\" rel=\"Ext.chart.Chart-event-show\" class=\"docClass\">show</a> method.</p>\n"
4076     },
4077     {
4078       "tagname": "event",
4079       "name": "staterestore",
4080       "member": "Ext.state.Stateful",
4081       "doc": "<p>Fires after the state of the object is restored.</p>\n",
4082       "params": [
4083         {
4084           "type": "Ext.state.Stateful",
4085           "name": "this",
4086           "doc": "\n",
4087           "optional": false
4088         },
4089         {
4090           "type": "Object",
4091           "name": "state",
4092           "doc": "<p>The hash of state values returned from the StateProvider. This is passed\nto <b><tt>applyState</tt></b>. By default, that simply copies property values into this\nobject. The method maybe overriden to provide custom state restoration.</p>\n",
4093           "optional": false
4094         }
4095       ],
4096       "private": false,
4097       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
4098       "linenr": 112,
4099       "html_filename": "Stateful.html",
4100       "href": "Stateful.html#Ext-state-Stateful-event-staterestore",
4101       "shortDoc": "<p>Fires after the state of the object is restored.</p>\n"
4102     },
4103     {
4104       "tagname": "event",
4105       "name": "statesave",
4106       "member": "Ext.state.Stateful",
4107       "doc": "<p>Fires after the state of the object is saved to the configured state provider.</p>\n",
4108       "params": [
4109         {
4110           "type": "Ext.state.Stateful",
4111           "name": "this",
4112           "doc": "\n",
4113           "optional": false
4114         },
4115         {
4116           "type": "Object",
4117           "name": "state",
4118           "doc": "<p>The hash of state values. This is determined by calling\n<b><tt>getState()</tt></b> on the object. This method must be provided by the\ndeveloper to return whetever representation of state is required, by default, <a href=\"#/api/Ext.state.Stateful\" rel=\"Ext.state.Stateful\" class=\"docClass\">Ext.state.Stateful</a>\nhas a null implementation.</p>\n",
4119           "optional": false
4120         }
4121       ],
4122       "private": false,
4123       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
4124       "linenr": 133,
4125       "html_filename": "Stateful.html",
4126       "href": "Stateful.html#Ext-state-Stateful-event-statesave",
4127       "shortDoc": "<p>Fires after the state of the object is saved to the configured state provider.</p>\n"
4128     }
4129   ],
4130   "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Chart.js",
4131   "linenr": 1,
4132   "html_filename": "Chart.html",
4133   "href": "Chart.html#Ext-chart-Chart",
4134   "cssVar": [
4135
4136   ],
4137   "cssMixin": [
4138
4139   ],
4140   "component": true,
4141   "superclasses": [
4142     "Ext.AbstractComponent",
4143     "Ext.Component",
4144     "Ext.draw.Component"
4145   ],
4146   "subclasses": [
4147
4148   ],
4149   "mixedInto": [
4150
4151   ],
4152   "allMixins": [
4153     "Ext.chart.theme.Theme",
4154     "Ext.chart.Mask",
4155     "Ext.chart.Navigation",
4156     "Ext.util.Floating",
4157     "Ext.util.Observable",
4158     "Ext.util.Animate",
4159     "Ext.state.Stateful"
4160   ]
4161 });