Upgrade to ExtJS 4.0.1 - Released 05/18/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-method-constructor'><span id='Ext-chart-series-Cartesian'>/**
19 </span></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  * @constructor
25  */
26 Ext.define('Ext.chart.series.Cartesian', {
27
28     /* Begin Definitions */
29
30     extend: 'Ext.chart.series.Series',
31
32     alternateClassName: ['Ext.chart.CartesianSeries', 'Ext.chart.CartesianChart'],
33
34     /* End Definitions */
35
36 <span id='Ext-chart-series-Cartesian-property-xField'>    /**
37 </span>     * The field used to access the x axis value from the items from the data
38      * source.
39      *
40      * @cfg xField
41      * @type String
42      */
43     xField: null,
44
45 <span id='Ext-chart-series-Cartesian-property-yField'>    /**
46 </span>     * The field used to access the y-axis value from the items from the data
47      * source.
48      *
49      * @cfg yField
50      * @type String
51      */
52     yField: null,
53
54 <span id='Ext-chart-series-Cartesian-property-axis'>    /**
55 </span>     * Indicates which axis the series will bind to
56      *
57      * @property axis
58      * @type String
59      */
60     axis: 'left'
61 });
62 </pre>
63 </body>
64 </html>