X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/source/Cartesian.html diff --git a/docs/source/Cartesian.html b/docs/source/Cartesian.html new file mode 100644 index 00000000..67c6e15f --- /dev/null +++ b/docs/source/Cartesian.html @@ -0,0 +1,45 @@ +
\ No newline at end of file/** + * @class Ext.chart.series.Cartesian + * @extends Ext.chart.series.Series + * + * Common base class for series implementations which plot values using x/y coordinates. + * + * @constructor + */ +Ext.define('Ext.chart.series.Cartesian', { + + /* Begin Definitions */ + + extend: 'Ext.chart.series.Series', + + alternateClassName: ['Ext.chart.CartesianSeries', 'Ext.chart.CartesianChart'], + + /* End Definitions */ + + /** + * The field used to access the x axis value from the items from the data + * source. + * + * @cfg xField + * @type String + */ + xField: null, + + /** + * The field used to access the y-axis value from the items from the data + * source. + * + * @cfg yField + * @type String + */ + yField: null, + + /** + * Indicates which axis the series will bind to + * + * @property axis + * @type String + */ + axis: 'left' +}); +