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