X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Chart.html diff --git a/docs/source/Chart.html b/docs/source/Chart.html index 27d8c825..2e7191eb 100644 --- a/docs/source/Chart.html +++ b/docs/source/Chart.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.chart.Chart
  * @extends Ext.draw.Component
  *
@@ -59,37 +76,37 @@ Ext.define('Ext.chart.Chart', {
     // @private
     viewBox: false,
 
-    /**
+    /**
      * @cfg {String} theme (optional) The name of the theme to be used. A theme defines the colors and
      * other visual displays of tick marks on axis, text, title text, line colors, marker colors and styles, etc.
      * Possible theme values are 'Base', 'Green', 'Sky', 'Red', 'Purple', 'Blue', 'Yellow' and also six category themes
      * 'Category1' to 'Category6'. Default value is 'Base'.
      */
 
-    /**
+    /**
      * @cfg {Boolean/Object} animate (optional) true for the default animation (easing: 'ease' and duration: 500)
      * or a standard animation config object to be used for default chart animations. Defaults to false.
      */
     animate: false,
 
-    /**
+    /**
      * @cfg {Boolean/Object} legend (optional) true for the default legend display or a legend config object. Defaults to false.
      */
     legend: false,
 
-    /**
+    /**
      * @cfg {integer} insetPadding (optional) Set the amount of inset padding in pixels for the chart. Defaults to 10.
      */
     insetPadding: 10,
 
-    /**
+    /**
      * @cfg {Array} enginePriority
      * Defines the priority order for which Surface implementation to use. The first
      * one supported by the current environment will be used.
      */
     enginePriority: ['Svg', 'Vml'],
 
-    /**
+    /**
      * @cfg {Object|Boolean} background (optional) Set the chart background. This can be a gradient object, image, or color.
      * Defaults to false for no background.
      *
@@ -131,7 +148,7 @@ Ext.define('Ext.chart.Chart', {
      */
     background: false,
 
-    /**
+    /**
      * @cfg {Array} gradients (optional) Define a set of gradients that can be used as `fill` property in sprites.
      * The gradients array is an array of objects with the following properties:
      *
@@ -227,14 +244,14 @@ Ext.define('Ext.chart.Chart', {
             'itemdragstart',
             'itemdrag',
             'itemdragend',
-            /**
+            /**
                  * @event beforerefresh
                  * Fires before a refresh to the chart data is called.  If the beforerefresh handler returns
                  * <tt>false</tt> the {@link #refresh} action will be cancelled.
                  * @param {Chart} this
                  */
             'beforerefresh',
-            /**
+            /**
                  * @event refresh
                  * Fires after the chart data has been refreshed.
                  * @param {Chart} this
@@ -285,7 +302,7 @@ Ext.define('Ext.chart.Chart', {
         this.callParent(arguments);
     },
 
-    /**
+    /**
      * Redraw the chart. If animations are set this will animate the chart too.
      * @cfg {boolean} resize Optional flag which changes the default origin points of the chart for animations.
      */
@@ -507,7 +524,7 @@ Ext.define('Ext.chart.Chart', {
         }
     },
 
-    /**
+    /**
      * Changes the data store bound to this chart and refreshes it.
      * @param {Store} store The store to bind to this chart
      */
@@ -609,7 +626,7 @@ Ext.define('Ext.chart.Chart', {
     },
 
 
-    /**
+    /**
      * @private Adjust the dimensions and positions of each axis and the chart body area after accounting
      * for the space taken up on each side by the axes and legend.
      */
@@ -754,4 +771,6 @@ Ext.define('Ext.chart.Chart', {
         this.callParent(arguments);
     }
 });
-
\ No newline at end of file +
+ +