X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/chart/pie-chart.js diff --git a/examples/chart/pie-chart.js b/examples/chart/pie-chart.js deleted file mode 100644 index 81498a88..00000000 --- a/examples/chart/pie-chart.js +++ /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