X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..refs/heads/master:/docs/source/Abstract.html diff --git a/docs/source/Abstract.html b/docs/source/Abstract.html index fee7f858..92073bf2 100644 --- a/docs/source/Abstract.html +++ b/docs/source/Abstract.html @@ -1,6 +1,24 @@ -
/**
+
+
+
+
+ The source code
+
+
+
+
+
+
+ /**
* @class Ext.chart.axis.Abstract
- * @ignore
+ * Base class for all axis classes.
+ * @private
*/
Ext.define('Ext.chart.axis.Abstract', {
@@ -10,6 +28,10 @@ Ext.define('Ext.chart.axis.Abstract', {
/* End Definitions */
+ /**
+ * Creates new Axis.
+ * @param {Object} config (optional) Config options.
+ */
constructor: function(config) {
config = config || {};
@@ -52,4 +74,6 @@ Ext.define('Ext.chart.axis.Abstract', {
drawAxis: Ext.emptyFn,
addDisplayAndLabels: Ext.emptyFn
});
-
\ No newline at end of file
+
+
+