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