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