Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / chart / pie-chart.js
diff --git a/examples/chart/pie-chart.js b/examples/chart/pie-chart.js
deleted file mode 100644 (file)
index 81498a8..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*!
- * Ext JS Library 3.3.1
- * Copyright(c) 2006-2010 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
-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