X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/examples/chart/pie-chart.js diff --git a/examples/chart/pie-chart.js b/examples/chart/pie-chart.js new file mode 100644 index 00000000..4340f93d --- /dev/null +++ b/examples/chart/pie-chart.js @@ -0,0 +1,53 @@ +/*! + * Ext JS Library 3.0.0 + * Copyright(c) 2006-2009 Ext JS, LLC + * licensing@extjs.com + * http://www.extjs.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