X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/chart/reload-chart.js diff --git a/examples/chart/reload-chart.js b/examples/chart/reload-chart.js deleted file mode 100644 index 1f709245..00000000 --- a/examples/chart/reload-chart.js +++ /dev/null @@ -1,51 +0,0 @@ -/*! - * Ext JS Library 3.3.1 - * Copyright(c) 2006-2010 Sencha Inc. - * licensing@sencha.com - * http://www.sencha.com/license - */ -function generateData(){ - var data = []; - for(var i = 0; i < 12; ++i){ - data.push([Date.monthNames[i], (Math.floor(Math.random() * 11) + 1) * 100]); - } - return data; -} - -Ext.onReady(function(){ - var store = new Ext.data.ArrayStore({ - fields: ['month', 'hits'], - data: generateData() - }); - - new Ext.Panel({ - width: 700, - height: 400, - renderTo: document.body, - title: 'Column Chart with Reload - Hits per Month', - tbar: [{ - text: 'Load new data set', - handler: function(){ - store.loadData(generateData()); - } - }], - items: { - xtype: 'columnchart', - store: store, - yField: 'hits', - url: '../../resources/charts.swf', - xField: 'month', - xAxis: new Ext.chart.CategoryAxis({ - title: 'Month' - }), - yAxis: new Ext.chart.NumericAxis({ - title: 'Hits' - }), - extraStyle: { - xAxis: { - labelRotation: -90 - } - } - } - }); -});