X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Time3.html diff --git a/docs/source/Time3.html b/docs/source/Time3.html index 8f53a87b..9ffc062b 100644 --- a/docs/source/Time3.html +++ b/docs/source/Time3.html @@ -1,5 +1,22 @@ -Sencha Documentation Project
/**
- * @class Ext.chart.axis.Time
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
+ * @class Ext.chart.axis.Time
  * @extends Ext.chart.axis.Axis
  *
  * A type of axis whose units are measured in time values. Use this axis
@@ -31,7 +48,6 @@
  * Since `constrain` is set to true all other values for other dates not between
  * the fromDate and toDate will not be displayed.
  * 
- * @constructor
  */
 Ext.define('Ext.chart.axis.Time', {
 
@@ -47,7 +63,7 @@ Ext.define('Ext.chart.axis.Time', {
 
     /* End Definitions */
 
-     /**
+     /**
       * The minimum value drawn by the axis. If not set explicitly, the axis
       * minimum will be calculated automatically.
       * @property calculateByLabelSize
@@ -55,7 +71,7 @@ Ext.define('Ext.chart.axis.Time', {
       */
     calculateByLabelSize: true,
     
-     /**
+     /**
      * Indicates the format the date will be rendered on. 
      * For example: 'M d' will render the dates as 'Jan 30', etc.
       *
@@ -64,7 +80,7 @@ Ext.define('Ext.chart.axis.Time', {
       */
     dateFormat: false,
     
-     /**
+     /**
      * Indicates the time unit to use for each step. Can be 'day', 'month', 'year' or a comma-separated combination of all of them.
      * Default's 'year,month,day'.
      *
@@ -73,7 +89,7 @@ Ext.define('Ext.chart.axis.Time', {
      */
     groupBy: 'year,month,day',
     
-    /**
+    /**
      * Aggregation operation when grouping. Possible options are 'sum', 'avg', 'max', 'min'. Default's 'sum'.
      * 
      * @property aggregateOp
@@ -81,21 +97,21 @@ Ext.define('Ext.chart.axis.Time', {
       */
     aggregateOp: 'sum',
     
-    /**
+    /**
      * The starting date for the time axis.
      * @property fromDate
      * @type Date
      */
     fromDate: false,
     
-    /**
+    /**
      * The ending date for the time axis.
      * @property toDate
      * @type Date
      */
     toDate: false,
     
-    /**
+    /**
      * An array with two components: The first is the unit of the step (day, month, year, etc). The second one is the number of units for the step (1, 2, etc.).
      * Default's [Ext.Date.DAY, 1].
      * 
@@ -104,7 +120,7 @@ Ext.define('Ext.chart.axis.Time', {
      */
     step: [Ext.Date.DAY, 1],
     
-    /**
+    /**
      * If true, the values of the chart will be rendered only if they belong between the fromDate and toDate. 
      * If false, the time axis will adapt to the new values by adding/removing steps.
      * Default's [Ext.Date.DAY, 1].
@@ -349,4 +365,6 @@ Ext.define('Ext.chart.axis.Time', {
      }
  });
 
-
\ No newline at end of file +
+ +