Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / source / Cartesian.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-chart-series-Cartesian'>/**
19 </span> * @class Ext.chart.series.Cartesian
20  * @extends Ext.chart.series.Series
21  *
22  * Common base class for series implementations which plot values using x/y coordinates.
23  *
24  */
25 Ext.define('Ext.chart.series.Cartesian', {
26
27     /* Begin Definitions */
28
29     extend: 'Ext.chart.series.Series',
30
31     alternateClassName: ['Ext.chart.CartesianSeries', 'Ext.chart.CartesianChart'],
32
33     /* End Definitions */
34
35 <span id='Ext-chart-series-Cartesian-property-xField'>    /**
36 </span>     * The field used to access the x axis value from the items from the data
37      * source.
38      *
39      * @cfg xField
40      * @type String
41      */
42     xField: null,
43
44 <span id='Ext-chart-series-Cartesian-property-yField'>    /**
45 </span>     * The field used to access the y-axis value from the items from the data
46      * source.
47      *
48      * @cfg yField
49      * @type String
50      */
51     yField: null,
52
53 <span id='Ext-chart-series-Cartesian-property-axis'>    /**
54 </span>     * Indicates which axis the series will bind to
55      *
56      * @property axis
57      * @type String
58      */
59     axis: 'left'
60 });
61 </pre>
62 </body>
63 </html>