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