Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.chart.series.Area.js
1 Ext.data.JsonP.Ext_chart_series_Area({
2   "tagname": "class",
3   "name": "Ext.chart.series.Area",
4   "doc": "<p>\n    Creates a Stacked Area Chart. The stacked area chart is useful when displaying multiple aggregated layers of information.\n    As with all other series, the Area Series must be appended in the *series* Chart array configuration. See the Chart \n    documentation for more information. A typical configuration object for the area series could be:\n </p>\n\n\n<p><p><img src=\"doc-resources/Ext.chart.series.Area/Ext.chart.series.Area.png\" alt=\"Ext.chart.series.Area chart series\"></p></p>\n\n<pre><code>   var store = Ext.create('Ext.data.JsonStore', {\n        fields: ['name', 'data1', 'data2', 'data3', 'data4', 'data5'],\n        data: [\n            {'name':'metric one', 'data1':10, 'data2':12, 'data3':14, 'data4':8, 'data5':13},\n            {'name':'metric two', 'data1':7, 'data2':8, 'data3':16, 'data4':10, 'data5':3},\n            {'name':'metric three', 'data1':5, 'data2':2, 'data3':14, 'data4':12, 'data5':7},\n            {'name':'metric four', 'data1':2, 'data2':14, 'data3':6, 'data4':1, 'data5':23},\n            {'name':'metric five', 'data1':27, 'data2':38, 'data3':36, 'data4':13, 'data5':33}                                                \n        ]\n    });\n    \n    Ext.create('Ext.chart.Chart', {\n        renderTo: Ext.getBody(),\n        width: 500,\n        height: 300,\n        store: store,\n        axes: [{\n            type: 'Numeric',\n            grid: true,\n            position: 'left',\n            fields: ['data1', 'data2', 'data3', 'data4', 'data5'],\n            title: 'Sample Values',\n            grid: {\n                odd: {\n                    opacity: 1,\n                    fill: '#ddd',\n                    stroke: '#bbb',\n                    'stroke-width': 1\n                }\n            },\n            minimum: 0,\n            adjustMinimumByMajorUnit: 0\n        }, {\n            type: 'Category',\n            position: 'bottom',\n            fields: ['name'],\n            title: 'Sample Metrics',\n            grid: true,\n            label: {\n                rotate: {\n                    degrees: 315\n                }\n            }\n        }],\n        series: [{\n            type: 'area',\n            highlight: false,\n            axis: 'left',\n            xField: 'name',\n            yField: ['data1', 'data2', 'data3', 'data4', 'data5'],\n            style: {\n                opacity: 0.93\n            }\n        }]\n    });\n   </code></pre>\n\n\n<p> <p>\n  In this configuration we set <code>area</code> as the type for the series, set highlighting options to true for highlighting elements on hover,\n  take the left axis to measure the data in the area series, set as xField (x values) the name field of each element in the store,\n  and as yFields (aggregated layers) seven data fields from the same store. Then we override some theming styles by adding some opacity\n  to the style object.\n </p></p>\n",
5   "extends": "Ext.chart.series.Cartesian",
6   "mixins": [
7
8   ],
9   "alternateClassNames": [
10
11   ],
12   "xtype": "area",
13   "author": null,
14   "docauthor": null,
15   "singleton": false,
16   "private": false,
17   "cfg": [
18     {
19       "tagname": "cfg",
20       "name": "color",
21       "member": "Ext.chart.Label",
22       "type": "String",
23       "doc": "<p>The color of the label text.\nDefault value: '#000' (black).</p>\n",
24       "private": false,
25       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Label.js",
26       "linenr": 42,
27       "html_filename": "Label2.html",
28       "href": "Label2.html#Ext-chart-Label-cfg-color"
29     },
30     {
31       "tagname": "cfg",
32       "name": "display",
33       "member": "Ext.chart.Label",
34       "type": "String",
35       "doc": "<p>Specifies the presence and position of labels for each pie slice. Either \"rotate\", \"middle\", \"insideStart\",\n\"insideEnd\", \"outside\", \"over\", \"under\", or \"none\" to prevent label rendering.\nDefault value: 'none'.</p>\n",
36       "private": false,
37       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Label.js",
38       "linenr": 35,
39       "html_filename": "Label2.html",
40       "href": "Label2.html#Ext-chart-Label-cfg-display",
41       "shortDoc": "Specifies the presence and position of labels for each pie slice. Either \"rotate\", \"middle\", \"insideStart\",\n\"insideEn..."
42     },
43     {
44       "tagname": "cfg",
45       "name": "field",
46       "member": "Ext.chart.Label",
47       "type": "String",
48       "doc": "<p>The name of the field to be displayed in the label.\nDefault value: 'name'.</p>\n",
49       "private": false,
50       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Label.js",
51       "linenr": 48,
52       "html_filename": "Label2.html",
53       "href": "Label2.html#Ext-chart-Label-cfg-field"
54     },
55     {
56       "tagname": "cfg",
57       "name": "font",
58       "member": "Ext.chart.Label",
59       "type": "String",
60       "doc": "<p>The font used for the labels.\nDefautl value: \"11px Helvetica, sans-serif\".</p>\n",
61       "private": false,
62       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Label.js",
63       "linenr": 61,
64       "html_filename": "Label2.html",
65       "href": "Label2.html#Ext-chart-Label-cfg-font"
66     },
67     {
68       "tagname": "cfg",
69       "name": "highlight",
70       "member": "Ext.chart.series.Series",
71       "type": "Boolean|Object",
72       "doc": "<p>If set to <code>true</code> it will highlight the markers or the series when hovering\nwith the mouse. This parameter can also be an object with the same style\nproperties you would apply to a <a href=\"#/api/Ext.draw.Sprite\" rel=\"Ext.draw.Sprite\" class=\"docClass\">Ext.draw.Sprite</a> to apply custom\nstyles to markers and series.</p>\n",
73       "private": false,
74       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
75       "linenr": 46,
76       "html_filename": "Series.html",
77       "href": "Series.html#Ext-chart-series-Series-cfg-highlight",
78       "shortDoc": "If set to true it will highlight the markers or the series when hovering\nwith the mouse. This parameter can also be a..."
79     },
80     {
81       "tagname": "cfg",
82       "name": "listeners",
83       "member": "Ext.chart.series.Series",
84       "type": "Object",
85       "doc": "<p>An (optional) object with event callbacks. All event callbacks get the target <em>item</em> as first parameter. The callback functions are:</p>\n\n<p> <ul></p>\n\n<pre><code> &lt;li&gt;itemmouseover&lt;/li&gt;\n &lt;li&gt;itemmouseout&lt;/li&gt;\n &lt;li&gt;itemmousedown&lt;/li&gt;\n &lt;li&gt;itemmouseup&lt;/li&gt;\n</code></pre>\n\n<p> </ul></p>\n",
86       "private": false,
87       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
88       "linenr": 105,
89       "html_filename": "Series.html",
90       "href": "Series.html#Ext-chart-series-Series-cfg-listeners",
91       "shortDoc": "An (optional) object with event callbacks. All event callbacks get the target item as first parameter. The callback f..."
92     },
93     {
94       "tagname": "cfg",
95       "name": "minMargin",
96       "member": "Ext.chart.Label",
97       "type": "Number",
98       "doc": "<p>Specifies the minimum distance from a label to the origin of the visualization.\nThis parameter is useful when using PieSeries width variable pie slice lengths.\nDefault value: 50.</p>\n",
99       "private": false,
100       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Label.js",
101       "linenr": 54,
102       "html_filename": "Label2.html",
103       "href": "Label2.html#Ext-chart-Label-cfg-minMargin",
104       "shortDoc": "Specifies the minimum distance from a label to the origin of the visualization.\nThis parameter is useful when using P..."
105     },
106     {
107       "tagname": "cfg",
108       "name": "orientation",
109       "member": "Ext.chart.Label",
110       "type": "String",
111       "doc": "<p>Either \"horizontal\" or \"vertical\".\nDafault value: \"horizontal\".</p>\n",
112       "private": false,
113       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Label.js",
114       "linenr": 67,
115       "html_filename": "Label2.html",
116       "href": "Label2.html#Ext-chart-Label-cfg-orientation"
117     },
118     {
119       "tagname": "cfg",
120       "name": "renderer",
121       "member": "Ext.chart.series.Series",
122       "type": "Function",
123       "doc": "<p>A function that can be overridden to set custom styling properties to each rendered element.\nPasses in (sprite, record, attributes, index, store) to the function.</p>\n",
124       "private": false,
125       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
126       "linenr": 87,
127       "html_filename": "Series.html",
128       "href": "Series.html#Ext-chart-series-Series-cfg-renderer",
129       "shortDoc": "A function that can be overridden to set custom styling properties to each rendered element.\nPasses in (sprite, recor..."
130     },
131     {
132       "tagname": "cfg",
133       "name": "shadowAttributes",
134       "member": "Ext.chart.series.Series",
135       "type": "Array",
136       "doc": "<p>An array with shadow attributes</p>\n",
137       "private": false,
138       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
139       "linenr": 96,
140       "html_filename": "Series.html",
141       "href": "Series.html#Ext-chart-series-Series-cfg-shadowAttributes"
142     },
143     {
144       "tagname": "cfg",
145       "name": "showInLegend",
146       "member": "Ext.chart.series.Series",
147       "type": "Boolean",
148       "doc": "<p>Whether to show this series in the legend.</p>\n",
149       "private": false,
150       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
151       "linenr": 81,
152       "html_filename": "Series.html",
153       "href": "Series.html#Ext-chart-series-Series-cfg-showInLegend"
154     },
155     {
156       "tagname": "cfg",
157       "name": "style",
158       "member": "Ext.chart.series.Area",
159       "type": "Object",
160       "doc": "<p>Append styling properties to this object for it to override theme properties.</p>\n",
161       "private": false,
162       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Area.js",
163       "linenr": 97,
164       "html_filename": "Area.html",
165       "href": "Area.html#Ext-chart-series-Area-cfg-style"
166     },
167     {
168       "tagname": "cfg",
169       "name": "tips",
170       "member": "Ext.chart.series.Series",
171       "type": "Object",
172       "doc": "<p>Add tooltips to the visualization's markers. The options for the tips are the\nsame configuration used with <a href=\"#/api/Ext.tip.ToolTip\" rel=\"Ext.tip.ToolTip\" class=\"docClass\">Ext.tip.ToolTip</a>. For example:</p>\n\n<pre><code>tips: {\n  trackMouse: true,\n  width: 140,\n  height: 28,\n  renderer: function(storeItem, item) {\n    this.setTitle(storeItem.get('name') + ': ' + storeItem.get('data1') + ' views');\n  }\n},\n</code></pre>\n",
173       "private": false,
174       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
175       "linenr": 54,
176       "html_filename": "Series.html",
177       "href": "Series.html#Ext-chart-series-Series-cfg-tips",
178       "shortDoc": "Add tooltips to the visualization's markers. The options for the tips are the\nsame configuration used with Ext.tip.To..."
179     },
180     {
181       "tagname": "cfg",
182       "name": "title",
183       "member": "Ext.chart.series.Series",
184       "type": "String",
185       "doc": "<p>The human-readable name of the series.</p>\n",
186       "private": false,
187       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
188       "linenr": 75,
189       "html_filename": "Series.html",
190       "href": "Series.html#Ext-chart-series-Series-cfg-title"
191     },
192     {
193       "tagname": "cfg",
194       "name": "type",
195       "member": "Ext.chart.series.Series",
196       "type": "String",
197       "doc": "<p>The type of series. Set in subclasses.</p>\n",
198       "private": false,
199       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
200       "linenr": 69,
201       "html_filename": "Series.html",
202       "href": "Series.html#Ext-chart-series-Series-cfg-type"
203     }
204   ],
205   "method": [
206     {
207       "tagname": "method",
208       "name": "Area",
209       "member": "Ext.chart.series.Cartesian",
210       "doc": "\n",
211       "params": [
212
213       ],
214       "return": {
215         "type": "void",
216         "doc": "\n"
217       },
218       "private": false,
219       "static": false,
220       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Cartesian.js",
221       "linenr": 1,
222       "html_filename": "Cartesian.html",
223       "href": "Cartesian.html#Ext-chart-series-Cartesian-method-constructor",
224       "shortDoc": "\n"
225     },
226     {
227       "tagname": "method",
228       "name": "addEvents",
229       "member": "Ext.util.Observable",
230       "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
231       "params": [
232         {
233           "type": "Object/String",
234           "name": "o",
235           "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",
236           "optional": false
237         },
238         {
239           "type": "String",
240           "name": "",
241           "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",
242           "optional": false
243         }
244       ],
245       "return": {
246         "type": "void",
247         "doc": "\n"
248       },
249       "private": false,
250       "static": false,
251       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
252       "linenr": 452,
253       "html_filename": "Observable.html",
254       "href": "Observable.html#Ext-util-Observable-method-addEvents",
255       "shortDoc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n"
256     },
257     {
258       "tagname": "method",
259       "name": "addListener",
260       "member": "Ext.util.Observable",
261       "doc": "<p>Appends an event handler to this object.</p>\n",
262       "params": [
263         {
264           "type": "String",
265           "name": "eventName",
266           "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",
267           "optional": false
268         },
269         {
270           "type": "Function",
271           "name": "handler",
272           "doc": "<p>The method the event invokes.</p>\n",
273           "optional": false
274         },
275         {
276           "type": "Object",
277           "name": "scope",
278           "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",
279           "optional": true
280         },
281         {
282           "type": "Object",
283           "name": "options",
284           "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",
285           "optional": true
286         }
287       ],
288       "return": {
289         "type": "void",
290         "doc": "\n"
291       },
292       "private": false,
293       "static": false,
294       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
295       "linenr": 271,
296       "html_filename": "Observable.html",
297       "href": "Observable.html#Ext-util-Observable-method-addListener",
298       "shortDoc": "<p>Appends an event handler to this object.</p>\n"
299     },
300     {
301       "tagname": "method",
302       "name": "addManagedListener",
303       "member": "Ext.util.Observable",
304       "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n",
305       "params": [
306         {
307           "type": "Observable/Element",
308           "name": "item",
309           "doc": "<p>The item to which to add a listener/listeners.</p>\n",
310           "optional": false
311         },
312         {
313           "type": "Object/String",
314           "name": "ename",
315           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
316           "optional": false
317         },
318         {
319           "type": "Function",
320           "name": "fn",
321           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
322           "optional": false
323         },
324         {
325           "type": "Object",
326           "name": "scope",
327           "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",
328           "optional": false
329         },
330         {
331           "type": "Object",
332           "name": "opt",
333           "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",
334           "optional": false
335         }
336       ],
337       "return": {
338         "type": "void",
339         "doc": "\n"
340       },
341       "private": false,
342       "static": false,
343       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
344       "linenr": 155,
345       "html_filename": "Observable.html",
346       "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
347       "shortDoc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n"
348     },
349     {
350       "tagname": "method",
351       "name": "capture",
352       "member": "Ext.util.Observable",
353       "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",
354       "params": [
355         {
356           "type": "Observable",
357           "name": "o",
358           "doc": "<p>The Observable to capture events from.</p>\n",
359           "optional": false
360         },
361         {
362           "type": "Function",
363           "name": "fn",
364           "doc": "<p>The function to call when an event is fired.</p>\n",
365           "optional": false
366         },
367         {
368           "type": "Object",
369           "name": "scope",
370           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Observable firing the event.</p>\n",
371           "optional": true
372         }
373       ],
374       "return": {
375         "type": "void",
376         "doc": "\n"
377       },
378       "private": false,
379       "static": true,
380       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
381       "linenr": 55,
382       "html_filename": "Observable.html",
383       "href": "Observable.html#Ext-util-Observable-method-capture",
384       "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..."
385     },
386     {
387       "tagname": "method",
388       "name": "clearListeners",
389       "member": "Ext.util.Observable",
390       "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
391       "params": [
392
393       ],
394       "return": {
395         "type": "void",
396         "doc": "\n"
397       },
398       "private": false,
399       "static": false,
400       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
401       "linenr": 383,
402       "html_filename": "Observable.html",
403       "href": "Observable.html#Ext-util-Observable-method-clearListeners",
404       "shortDoc": "<p>Removes all listeners for this object including the managed listeners</p>\n"
405     },
406     {
407       "tagname": "method",
408       "name": "clearManagedListeners",
409       "member": "Ext.util.Observable",
410       "doc": "<p>Removes all managed listeners for this object.</p>\n",
411       "params": [
412
413       ],
414       "return": {
415         "type": "void",
416         "doc": "\n"
417       },
418       "private": false,
419       "static": false,
420       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
421       "linenr": 412,
422       "html_filename": "Observable.html",
423       "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
424       "shortDoc": "<p>Removes all managed listeners for this object.</p>\n"
425     },
426     {
427       "tagname": "method",
428       "name": "drawSeries",
429       "member": "Ext.chart.series.Area",
430       "doc": "<p>Draws the series for the current chart.</p>\n",
431       "params": [
432
433       ],
434       "return": {
435         "type": "void",
436         "doc": "\n"
437       },
438       "private": false,
439       "static": false,
440       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Area.js",
441       "linenr": 348,
442       "html_filename": "Area.html",
443       "href": "Area.html#Ext-chart-series-Area-method-drawSeries",
444       "shortDoc": "<p>Draws the series for the current chart.</p>\n"
445     },
446     {
447       "tagname": "method",
448       "name": "enableBubble",
449       "member": "Ext.util.Observable",
450       "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",
451       "params": [
452         {
453           "type": "String/Array",
454           "name": "events",
455           "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
456           "optional": false
457         }
458       ],
459       "return": {
460         "type": "void",
461         "doc": "\n"
462       },
463       "private": false,
464       "static": false,
465       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
466       "linenr": 554,
467       "html_filename": "Observable.html",
468       "href": "Observable.html#Ext-util-Observable-method-enableBubble",
469       "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...."
470     },
471     {
472       "tagname": "method",
473       "name": "fireEvent",
474       "member": "Ext.util.Observable",
475       "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.series.Area-method-enableBubble\" rel=\"Ext.chart.series.Area-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n\n",
476       "params": [
477         {
478           "type": "String",
479           "name": "eventName",
480           "doc": "<p>The name of the event to fire.</p>\n",
481           "optional": false
482         },
483         {
484           "type": "Object...",
485           "name": "args",
486           "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
487           "optional": false
488         }
489       ],
490       "return": {
491         "type": "Boolean",
492         "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
493       },
494       "private": false,
495       "static": false,
496       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
497       "linenr": 232,
498       "html_filename": "Observable.html",
499       "href": "Observable.html#Ext-util-Observable-method-fireEvent",
500       "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..."
501     },
502     {
503       "tagname": "method",
504       "name": "getItemForPoint",
505       "member": "Ext.chart.series.Series",
506       "doc": "<p>For a given x/y point relative to the Surface, find a corresponding item from this\nseries, if any.</p>\n",
507       "params": [
508         {
509           "type": "Number",
510           "name": "x",
511           "doc": "\n",
512           "optional": false
513         },
514         {
515           "type": "Number",
516           "name": "y",
517           "doc": "\n",
518           "optional": false
519         }
520       ],
521       "return": {
522         "type": "Object",
523         "doc": "<p>An object describing the item, or null if there is no matching item. The exact contents of</p>\n\n<pre><code>             this object will vary by series type, but should always contain at least the following:\n             &lt;ul&gt;\n               &lt;li&gt;{Ext.chart.series.Series} series - the Series object to which the item belongs&lt;/li&gt;\n               &lt;li&gt;{Object} value - the value(s) of the item's data point&lt;/li&gt;\n               &lt;li&gt;{Array} point - the x/y coordinates relative to the chart box of a single point\n                   for this data item, which can be used as e.g. a tooltip anchor point.&lt;/li&gt;\n               &lt;li&gt;{Ext.draw.Sprite} sprite - the item's rendering Sprite.\n             &lt;/ul&gt;\n</code></pre>\n"
524       },
525       "private": false,
526       "static": false,
527       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
528       "linenr": 241,
529       "html_filename": "Series.html",
530       "href": "Series.html#Ext-chart-series-Series-method-getItemForPoint",
531       "shortDoc": "<p>For a given x/y point relative to the Surface, find a corresponding item from this\nseries, if any.</p>\n"
532     },
533     {
534       "tagname": "method",
535       "name": "getLegendColor",
536       "member": "Ext.chart.series.Area",
537       "doc": "<p>Returns the color of the series (to be displayed as color for the series legend item).</p>\n",
538       "params": [
539         {
540           "type": "Object",
541           "name": "item",
542           "doc": "<p>{Object} Info about the item; same format as returned by #getItemForPoint</p>\n",
543           "optional": false
544         }
545       ],
546       "return": {
547         "type": "void",
548         "doc": "\n"
549       },
550       "private": false,
551       "static": false,
552       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Area.js",
553       "linenr": 728,
554       "html_filename": "Area.html",
555       "href": "Area.html#Ext-chart-series-Area-method-getLegendColor",
556       "shortDoc": "<p>Returns the color of the series (to be displayed as color for the series legend item).</p>\n"
557     },
558     {
559       "tagname": "method",
560       "name": "hasListener",
561       "member": "Ext.util.Observable",
562       "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
563       "params": [
564         {
565           "type": "String",
566           "name": "eventName",
567           "doc": "<p>The name of the event to check for</p>\n",
568           "optional": false
569         }
570       ],
571       "return": {
572         "type": "Boolean",
573         "doc": "<p>True if the event is being listened for, else false</p>\n"
574       },
575       "private": false,
576       "static": false,
577       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
578       "linenr": 480,
579       "html_filename": "Observable.html",
580       "href": "Observable.html#Ext-util-Observable-method-hasListener",
581       "shortDoc": "<p>Checks to see if this object has any listeners for a specified event</p>\n"
582     },
583     {
584       "tagname": "method",
585       "name": "hideAll",
586       "member": "Ext.chart.series.Series",
587       "doc": "<p>Hides all the elements in the series.</p>\n",
588       "params": [
589
590       ],
591       "return": {
592         "type": "void",
593         "doc": "\n"
594       },
595       "private": false,
596       "static": false,
597       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
598       "linenr": 282,
599       "html_filename": "Series.html",
600       "href": "Series.html#Ext-chart-series-Series-method-hideAll",
601       "shortDoc": "<p>Hides all the elements in the series.</p>\n"
602     },
603     {
604       "tagname": "method",
605       "name": "highlightItem",
606       "member": "Ext.chart.series.Area",
607       "doc": "<p>Highlight the specified item. If no item is provided the whole series will be highlighted.</p>\n",
608       "params": [
609         {
610           "type": "Object",
611           "name": "item",
612           "doc": "<p>{Object} Info about the item; same format as returned by #getItemForPoint</p>\n",
613           "optional": false
614         }
615       ],
616       "return": {
617         "type": "void",
618         "doc": "\n"
619       },
620       "private": false,
621       "static": false,
622       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Area.js",
623       "linenr": 676,
624       "html_filename": "Area.html",
625       "href": "Area.html#Ext-chart-series-Area-method-highlightItem",
626       "shortDoc": "<p>Highlight the specified item. If no item is provided the whole series will be highlighted.</p>\n"
627     },
628     {
629       "tagname": "method",
630       "name": "highlightSeries",
631       "member": "Ext.chart.series.Area",
632       "doc": "<p>Highlight this entire series.</p>\n",
633       "params": [
634         {
635           "type": "Object",
636           "name": "item",
637           "doc": "<p>Info about the item; same format as returned by #getItemForPoint.</p>\n",
638           "optional": false
639         }
640       ],
641       "return": {
642         "type": "void",
643         "doc": "\n"
644       },
645       "private": false,
646       "static": false,
647       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Area.js",
648       "linenr": 614,
649       "html_filename": "Area.html",
650       "href": "Area.html#Ext-chart-series-Area-method-highlightSeries",
651       "shortDoc": "<p>Highlight this entire series.</p>\n"
652     },
653     {
654       "tagname": "method",
655       "name": "observe",
656       "member": "Ext.util.Observable",
657       "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",
658       "params": [
659         {
660           "type": "Function",
661           "name": "c",
662           "doc": "<p>The class constructor to make observable.</p>\n",
663           "optional": false
664         },
665         {
666           "type": "Object",
667           "name": "listeners",
668           "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.chart.series.Area-method-addListener\" rel=\"Ext.chart.series.Area-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
669           "optional": false
670         }
671       ],
672       "return": {
673         "type": "void",
674         "doc": "\n"
675       },
676       "private": false,
677       "static": true,
678       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
679       "linenr": 69,
680       "html_filename": "Observable.html",
681       "href": "Observable.html#Ext-util-Observable-method-observe",
682       "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..."
683     },
684     {
685       "tagname": "method",
686       "name": "on",
687       "member": "Ext.util.Observable",
688       "doc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.chart.series.Area-method-addListener\" rel=\"Ext.chart.series.Area-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n",
689       "params": [
690         {
691           "type": "String",
692           "name": "eventName",
693           "doc": "<p>The type of event to listen for</p>\n",
694           "optional": false
695         },
696         {
697           "type": "Function",
698           "name": "handler",
699           "doc": "<p>The method the event invokes</p>\n",
700           "optional": false
701         },
702         {
703           "type": "Object",
704           "name": "scope",
705           "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",
706           "optional": true
707         },
708         {
709           "type": "Object",
710           "name": "options",
711           "doc": "<p>(optional) An object containing handler configuration.</p>\n",
712           "optional": true
713         }
714       ],
715       "return": {
716         "type": "void",
717         "doc": "\n"
718       },
719       "private": false,
720       "static": false,
721       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
722       "linenr": 616,
723       "html_filename": "Observable.html",
724       "href": "Observable.html#Ext-util-Observable-method-on",
725       "shortDoc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.chart.series.Area-method-addListener\" rel=\"Ext.chart.series.Area-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n"
726     },
727     {
728       "tagname": "method",
729       "name": "relayEvents",
730       "member": "Ext.util.Observable",
731       "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n",
732       "params": [
733         {
734           "type": "Object",
735           "name": "origin",
736           "doc": "<p>The Observable whose events this object is to relay.</p>\n",
737           "optional": false
738         },
739         {
740           "type": "Array",
741           "name": "events",
742           "doc": "<p>Array of event names to relay.</p>\n",
743           "optional": false
744         },
745         {
746           "type": "Object",
747           "name": "prefix",
748           "doc": "\n",
749           "optional": false
750         }
751       ],
752       "return": {
753         "type": "void",
754         "doc": "\n"
755       },
756       "private": false,
757       "static": false,
758       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
759       "linenr": 520,
760       "html_filename": "Observable.html",
761       "href": "Observable.html#Ext-util-Observable-method-relayEvents",
762       "shortDoc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n"
763     },
764     {
765       "tagname": "method",
766       "name": "releaseCapture",
767       "member": "Ext.util.Observable",
768       "doc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n",
769       "params": [
770         {
771           "type": "Observable",
772           "name": "o",
773           "doc": "<p>The Observable to release</p>\n",
774           "optional": false
775         }
776       ],
777       "return": {
778         "type": "void",
779         "doc": "\n"
780       },
781       "private": false,
782       "static": true,
783       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
784       "linenr": 46,
785       "html_filename": "Observable.html",
786       "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
787       "shortDoc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n"
788     },
789     {
790       "tagname": "method",
791       "name": "removeListener",
792       "member": "Ext.util.Observable",
793       "doc": "<p>Removes an event handler.</p>\n",
794       "params": [
795         {
796           "type": "String",
797           "name": "eventName",
798           "doc": "<p>The type of event the handler was associated with.</p>\n",
799           "optional": false
800         },
801         {
802           "type": "Function",
803           "name": "handler",
804           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.chart.series.Area-method-addListener\" rel=\"Ext.chart.series.Area-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
805           "optional": false
806         },
807         {
808           "type": "Object",
809           "name": "scope",
810           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
811           "optional": true
812         }
813       ],
814       "return": {
815         "type": "void",
816         "doc": "\n"
817       },
818       "private": false,
819       "static": false,
820       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
821       "linenr": 352,
822       "html_filename": "Observable.html",
823       "href": "Observable.html#Ext-util-Observable-method-removeListener",
824       "shortDoc": "<p>Removes an event handler.</p>\n"
825     },
826     {
827       "tagname": "method",
828       "name": "removeManagedListener",
829       "member": "Ext.util.Observable",
830       "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.chart.series.Area--mon\" rel=\"Ext.chart.series.Area--mon\" class=\"docClass\">mon</a> method.</p>\n",
831       "params": [
832         {
833           "type": "Observable|Element",
834           "name": "item",
835           "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
836           "optional": false
837         },
838         {
839           "type": "Object|String",
840           "name": "ename",
841           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
842           "optional": false
843         },
844         {
845           "type": "Function",
846           "name": "fn",
847           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
848           "optional": false
849         },
850         {
851           "type": "Object",
852           "name": "scope",
853           "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",
854           "optional": false
855         }
856       ],
857       "return": {
858         "type": "void",
859         "doc": "\n"
860       },
861       "private": false,
862       "static": false,
863       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
864       "linenr": 196,
865       "html_filename": "Observable.html",
866       "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
867       "shortDoc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.chart.series.Area--mon\" rel=\"Ext.chart.series.Area--mon\" class=\"docClass\">mon</a> method.</p>\n"
868     },
869     {
870       "tagname": "method",
871       "name": "resumeEvents",
872       "member": "Ext.util.Observable",
873       "doc": "<p>Resume firing events. (see <a href=\"#/api/Ext.chart.series.Area-method-suspendEvents\" rel=\"Ext.chart.series.Area-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",
874       "params": [
875
876       ],
877       "return": {
878         "type": "void",
879         "doc": "\n"
880       },
881       "private": false,
882       "static": false,
883       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
884       "linenr": 502,
885       "html_filename": "Observable.html",
886       "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
887       "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..."
888     },
889     {
890       "tagname": "method",
891       "name": "setTitle",
892       "member": "Ext.chart.series.Series",
893       "doc": "<p>Changes the value of the <a href=\"#/api/Ext.chart.series.Area-cfg-title\" rel=\"Ext.chart.series.Area-cfg-title\" class=\"docClass\">title</a> for the series.\nArguments can take two forms:</p>\n\n<ul>\n<li>A single String value: this will be used as the new single title for the series (applies\nto series with only one yField)</li>\n<li>A numeric index and a String value: this will set the title for a single indexed yField.</li>\n</ul>\n\n",
894       "params": [
895         {
896           "type": "Number",
897           "name": "index",
898           "doc": "\n",
899           "optional": false
900         },
901         {
902           "type": "String",
903           "name": "title",
904           "doc": "\n",
905           "optional": false
906         }
907       ],
908       "return": {
909         "type": "void",
910         "doc": "\n"
911       },
912       "private": false,
913       "static": false,
914       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
915       "linenr": 350,
916       "html_filename": "Series.html",
917       "href": "Series.html#Ext-chart-series-Series-method-setTitle",
918       "shortDoc": "Changes the value of the title for the series.\nArguments can take two forms:\n\n\nA single String value: this will be us..."
919     },
920     {
921       "tagname": "method",
922       "name": "showAll",
923       "member": "Ext.chart.series.Series",
924       "doc": "<p>Shows all the elements in the series.</p>\n",
925       "params": [
926
927       ],
928       "return": {
929         "type": "void",
930         "doc": "\n"
931       },
932       "private": false,
933       "static": false,
934       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
935       "linenr": 308,
936       "html_filename": "Series.html",
937       "href": "Series.html#Ext-chart-series-Series-method-showAll",
938       "shortDoc": "<p>Shows all the elements in the series.</p>\n"
939     },
940     {
941       "tagname": "method",
942       "name": "suspendEvents",
943       "member": "Ext.util.Observable",
944       "doc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.chart.series.Area-method-resumeEvents\" rel=\"Ext.chart.series.Area-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
945       "params": [
946         {
947           "type": "Boolean",
948           "name": "queueSuspended",
949           "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.chart.series.Area-method-resumeEvents\" rel=\"Ext.chart.series.Area-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events;</p>\n",
950           "optional": false
951         }
952       ],
953       "return": {
954         "type": "void",
955         "doc": "\n"
956       },
957       "private": false,
958       "static": false,
959       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
960       "linenr": 490,
961       "html_filename": "Observable.html",
962       "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
963       "shortDoc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.chart.series.Area-method-resumeEvents\" rel=\"Ext.chart.series.Area-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n"
964     },
965     {
966       "tagname": "method",
967       "name": "un",
968       "member": "Ext.util.Observable",
969       "doc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.chart.series.Area-method-removeListener\" rel=\"Ext.chart.series.Area-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n",
970       "params": [
971         {
972           "type": "String",
973           "name": "eventName",
974           "doc": "<p>The type of event the handler was associated with.</p>\n",
975           "optional": false
976         },
977         {
978           "type": "Function",
979           "name": "handler",
980           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.chart.series.Area-method-addListener\" rel=\"Ext.chart.series.Area-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
981           "optional": false
982         },
983         {
984           "type": "Object",
985           "name": "scope",
986           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
987           "optional": true
988         }
989       ],
990       "return": {
991         "type": "void",
992         "doc": "\n"
993       },
994       "private": false,
995       "static": false,
996       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
997       "linenr": 608,
998       "html_filename": "Observable.html",
999       "href": "Observable.html#Ext-util-Observable-method-un",
1000       "shortDoc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.chart.series.Area-method-removeListener\" rel=\"Ext.chart.series.Area-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n"
1001     },
1002     {
1003       "tagname": "method",
1004       "name": "unHighlightItem",
1005       "member": "Ext.chart.series.Area",
1006       "doc": "<p>un-highlights the specified item. If no item is provided it will un-highlight the entire series.</p>\n",
1007       "params": [
1008         {
1009           "type": "Object",
1010           "name": "item",
1011           "doc": "<p>{Object} Info about the item; same format as returned by #getItemForPoint</p>\n",
1012           "optional": false
1013         }
1014       ],
1015       "return": {
1016         "type": "void",
1017         "doc": "\n"
1018       },
1019       "private": false,
1020       "static": false,
1021       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Area.js",
1022       "linenr": 696,
1023       "html_filename": "Area.html",
1024       "href": "Area.html#Ext-chart-series-Area-method-unHighlightItem",
1025       "shortDoc": "<p>un-highlights the specified item. If no item is provided it will un-highlight the entire series.</p>\n"
1026     },
1027     {
1028       "tagname": "method",
1029       "name": "unHighlightSeries",
1030       "member": "Ext.chart.series.Area",
1031       "doc": "<p>UnHighlight this entire series.</p>\n",
1032       "params": [
1033         {
1034           "type": "Object",
1035           "name": "item",
1036           "doc": "<p>Info about the item; same format as returned by #getItemForPoint.</p>\n",
1037           "optional": false
1038         }
1039       ],
1040       "return": {
1041         "type": "void",
1042         "doc": "\n"
1043       },
1044       "private": false,
1045       "static": false,
1046       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Area.js",
1047       "linenr": 651,
1048       "html_filename": "Area.html",
1049       "href": "Area.html#Ext-chart-series-Area-method-unHighlightSeries",
1050       "shortDoc": "<p>UnHighlight this entire series.</p>\n"
1051     }
1052   ],
1053   "property": [
1054     {
1055       "tagname": "property",
1056       "name": "axis",
1057       "member": "Ext.chart.series.Cartesian",
1058       "type": "String",
1059       "doc": "<p>Indicates which axis the series will bind to</p>\n",
1060       "private": false,
1061       "static": false,
1062       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Cartesian.js",
1063       "linenr": 37,
1064       "html_filename": "Cartesian.html",
1065       "href": "Cartesian.html#Ext-chart-series-Cartesian-property-axis"
1066     },
1067     {
1068       "tagname": "property",
1069       "name": "highlight",
1070       "member": "Ext.chart.Highlight",
1071       "type": "Boolean",
1072       "doc": "<p>Highlight the given series item.</p>\n",
1073       "private": false,
1074       "static": false,
1075       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/Highlight.js",
1076       "linenr": 13,
1077       "html_filename": "Highlight.html",
1078       "href": "Highlight.html#Ext-chart-Highlight-property-highlight"
1079     },
1080     {
1081       "tagname": "property",
1082       "name": "xField",
1083       "member": "Ext.chart.series.Cartesian",
1084       "type": "String",
1085       "doc": "<p>The field used to access the x axis value from the items from the data\nsource.</p>\n",
1086       "private": false,
1087       "static": false,
1088       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Cartesian.js",
1089       "linenr": 19,
1090       "html_filename": "Cartesian.html",
1091       "href": "Cartesian.html#Ext-chart-series-Cartesian-property-xField"
1092     },
1093     {
1094       "tagname": "property",
1095       "name": "yField",
1096       "member": "Ext.chart.series.Cartesian",
1097       "type": "String",
1098       "doc": "<p>The field used to access the y-axis value from the items from the data\nsource.</p>\n",
1099       "private": false,
1100       "static": false,
1101       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Cartesian.js",
1102       "linenr": 28,
1103       "html_filename": "Cartesian.html",
1104       "href": "Cartesian.html#Ext-chart-series-Cartesian-property-yField"
1105     }
1106   ],
1107   "event": [
1108     {
1109       "tagname": "event",
1110       "name": "titlechange",
1111       "member": "Ext.chart.series.Series",
1112       "doc": "<p>Fires when the series title is changed via <a href=\"#/api/Ext.chart.series.Area-method-setTitle\" rel=\"Ext.chart.series.Area-method-setTitle\" class=\"docClass\">setTitle</a>.</p>\n",
1113       "params": [
1114         {
1115           "type": "String",
1116           "name": "title",
1117           "doc": "<p>The new title value</p>\n",
1118           "optional": false
1119         },
1120         {
1121           "type": "Number",
1122           "name": "index",
1123           "doc": "<p>The index in the collection of titles</p>\n",
1124           "optional": false
1125         }
1126       ],
1127       "private": false,
1128       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Series.js",
1129       "linenr": 139,
1130       "html_filename": "Series.html",
1131       "href": "Series.html#Ext-chart-series-Series-event-titlechange",
1132       "shortDoc": "<p>Fires when the series title is changed via <a href=\"#/api/Ext.chart.series.Area-method-setTitle\" rel=\"Ext.chart.series.Area-method-setTitle\" class=\"docClass\">setTitle</a>.</p>\n"
1133     }
1134   ],
1135   "filename": "/Users/nick/Projects/sencha/SDK/platform/src/chart/series/Area.js",
1136   "linenr": 1,
1137   "html_filename": "Area.html",
1138   "href": "Area.html#Ext-chart-series-Area",
1139   "cssVar": [
1140
1141   ],
1142   "cssMixin": [
1143
1144   ],
1145   "component": false,
1146   "superclasses": [
1147     "Ext.chart.series.Series",
1148     "Ext.chart.series.Cartesian"
1149   ],
1150   "subclasses": [
1151
1152   ],
1153   "mixedInto": [
1154
1155   ],
1156   "allMixins": [
1157     "Ext.util.Observable",
1158     "Ext.chart.Label",
1159     "Ext.chart.Highlight",
1160     "Ext.chart.Tip",
1161     "Ext.chart.Callout"
1162   ]
1163 });