X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/pie-chart.html diff --git a/docs/source/pie-chart.html b/docs/source/pie-chart.html deleted file mode 100644 index 72db9345..00000000 --- a/docs/source/pie-chart.html +++ /dev/null @@ -1,56 +0,0 @@ - - - The source code - - - - -
Ext.chart.Chart.CHART_URL = '../../resources/charts.swf';
-
-Ext.onReady(function(){
-    var store = new Ext.data.JsonStore({
-        fields: ['season', 'total'],
-        data: [{
-            season: 'Summer',
-            total: 150
-        },{
-            season: 'Fall',
-            total: 245
-        },{
-            season: 'Winter',
-            total: 117
-        },{
-            season: 'Spring',
-            total: 184
-        }]
-    });
-    
-    new Ext.Panel({
-        width: 400,
-        height: 400,
-        title: 'Pie Chart with Legend - Favorite Season',
-        renderTo: 'container',
-        items: {
-            store: store,
-            xtype: 'piechart',
-            dataField: 'total',
-            categoryField: 'season',
-            //extra styles get applied to the chart defaults
-            extraStyle:
-            {
-                legend:
-                {
-                    display: 'bottom',
-                    padding: 5,
-                    font:
-                    {
-                        family: 'Tahoma',
-                        size: 13
-                    }
-                }
-            }
-        }
-    });
-});
- - \ No newline at end of file