X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..6a7e4474cba9d8be4b2ec445e10f1691f7277c50:/examples/chart/reload-chart.js diff --git a/examples/chart/reload-chart.js b/examples/chart/reload-chart.js index 903dea4c..e030026f 100644 --- a/examples/chart/reload-chart.js +++ b/examples/chart/reload-chart.js @@ -1,51 +1,51 @@ /*! - * Ext JS Library 3.1.1 - * Copyright(c) 2006-2010 Ext JS, LLC + * Ext JS Library 3.2.0 + * Copyright(c) 2006-2010 Ext JS, Inc. * licensing@extjs.com * http://www.extjs.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 - } - } - } - }); -}); +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 + } + } + } + }); +});