X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Series.html diff --git a/docs/source/Series.html b/docs/source/Series.html index b896d8c8..8ab7c52f 100644 --- a/docs/source/Series.html +++ b/docs/source/Series.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.chart.series.Series
  * 
  * Series is the abstract class containing the common logic to all chart series. Series includes 
@@ -43,7 +60,7 @@ Ext.define('Ext.chart.series.Series', {
 
     /* End Definitions */
 
-    /**
+    /**
      * @cfg {Boolean|Object} highlight
      * If set to `true` it will highlight the markers or the series when hovering
      * with the mouse. This parameter can also be an object with the same style
@@ -51,7 +68,7 @@ Ext.define('Ext.chart.series.Series', {
      * styles to markers and series.
      */
 
-    /**
+    /**
      * @cfg {Object} tips
      * Add tooltips to the visualization's markers. The options for the tips are the
      * same configuration used with {@link Ext.tip.ToolTip}. For example:
@@ -66,25 +83,25 @@ Ext.define('Ext.chart.series.Series', {
      *     },
      */
 
-    /**
+    /**
      * @cfg {String} type
      * The type of series. Set in subclasses.
      */
     type: null,
 
-    /**
+    /**
      * @cfg {String} title
      * The human-readable name of the series.
      */
     title: null,
 
-    /**
+    /**
      * @cfg {Boolean} showInLegend
      * Whether to show this series in the legend.
      */
     showInLegend: true,
 
-    /**
+    /**
      * @cfg {Function} renderer
      * A function that can be overridden to set custom styling properties to each rendered element.
      * Passes in (sprite, record, attributes, index, store) to the function.
@@ -93,7 +110,7 @@ Ext.define('Ext.chart.series.Series', {
         return attributes;
     },
 
-    /**
+    /**
      * @cfg {Array} shadowAttributes
      * An array with shadow attributes
      */
@@ -102,7 +119,7 @@ Ext.define('Ext.chart.series.Series', {
     //@private triggerdrawlistener flag
     triggerAfterDraw: false,
 
-    /**
+    /**
      * @cfg {Object} listeners  
      * An (optional) object with event callbacks. All event callbacks get the target *item* as first parameter. The callback functions are:
      *  
@@ -136,7 +153,7 @@ Ext.define('Ext.chart.series.Series', {
             mouseleave: true,
             afterdraw: true,
 
-            /**
+            /**
              * @event titlechange
              * Fires when the series title is changed via {@link #setTitle}.
              * @param {String} title The new title value
@@ -238,7 +255,7 @@ Ext.define('Ext.chart.series.Series', {
         }
     },
 
-    /**
+    /**
      * For a given x/y point relative to the Surface, find a corresponding item from this
      * series, if any.
      * @param {Number} x
@@ -279,7 +296,7 @@ Ext.define('Ext.chart.series.Series', {
         return false;
     },
 
-    /**
+    /**
      * Hides all the elements in the series.
      */
     hideAll: function() {
@@ -305,7 +322,7 @@ Ext.define('Ext.chart.series.Series', {
         }
     },
 
-    /**
+    /**
      * Shows all the elements in the series.
      */
     showAll: function() {
@@ -318,7 +335,7 @@ Ext.define('Ext.chart.series.Series', {
         me.chart.animate = prevAnimate;
     },
     
-    /**
+    /**
      * Returns a string with the color to be used for the series legend item. 
      */
     getLegendColor: function(index) {
@@ -334,7 +351,7 @@ Ext.define('Ext.chart.series.Series', {
         return '#000';
     },
     
-    /**
+    /**
      * Checks whether the data field should be visible in the legend
      * @private
      * @param {Number} index The index of the current item
@@ -347,7 +364,7 @@ Ext.define('Ext.chart.series.Series', {
         return !this.seriesIsHidden;
     },
 
-    /**
+    /**
      * Changes the value of the {@link #title} for the series.
      * Arguments can take two forms:
      * <ul>
@@ -376,4 +393,6 @@ Ext.define('Ext.chart.series.Series', {
         me.fireEvent('titlechange', title, index);
     }
 });
-
\ No newline at end of file +
+ +