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