X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Chart.html diff --git a/docs/source/Chart.html b/docs/source/Chart.html index 27d8c825..6846ddb6 100644 --- a/docs/source/Chart.html +++ b/docs/source/Chart.html @@ -1,4 +1,21 @@ -
/**
+
+
+
+
+ The source code
+
+
+
+
+
+
+ /**
* @class Ext.chart.Chart
* @extends Ext.draw.Component
*
@@ -29,10 +46,7 @@
* select a color theme `Category1` for coloring the series, set the legend to the right part of the chart and
* then tell the chart to render itself in the body element of the document. For more information about the axes and
* series configurations please check the documentation of each series (Line, Bar, Pie, etc).
- *
- * @xtype chart
*/
-
Ext.define('Ext.chart.Chart', {
/* Begin Definitions */
@@ -59,37 +73,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 +145,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 +241,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 +299,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 +521,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 +623,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 +768,6 @@ Ext.define('Ext.chart.Chart', {
this.callParent(arguments);
}
});
-
\ No newline at end of file
+
+
+