X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/pivotgrid/simple.js diff --git a/examples/pivotgrid/simple.js b/examples/pivotgrid/simple.js deleted file mode 100644 index 48ecff28..00000000 --- a/examples/pivotgrid/simple.js +++ /dev/null @@ -1,62 +0,0 @@ -/*! - * Ext JS Library 3.3.1 - * Copyright(c) 2006-2010 Sencha Inc. - * licensing@sencha.com - * http://www.sencha.com/license - */ -Ext.onReady(function() { - var SaleRecord = Ext.data.Record.create([ - {name: 'person', type: 'string'}, - {name: 'product', type: 'string'}, - {name: 'city', type: 'string'}, - {name: 'state', type: 'string'}, - {name: 'month', type: 'int'}, - {name: 'quarter', type: 'int'}, - {name: 'year', type: 'int'}, - {name: 'quantity', type: 'int'}, - {name: 'value', type: 'int'} - ]); - - var myStore = new Ext.data.Store({ - url: 'simple.json', - autoLoad: true, - reader: new Ext.data.JsonReader({ - root: 'rows', - idProperty: 'id' - }, SaleRecord) - }); - - var pivotGrid = new Ext.grid.PivotGrid({ - title : 'PivotGrid example', - width : 800, - height : 259, - renderTo : 'docbody', - store : myStore, - aggregator: 'sum', - measure : 'value', - - viewConfig: { - title: 'Sales Performance' - }, - - leftAxis: [ - { - width: 80, - dataIndex: 'person' - }, - { - width: 90, - dataIndex: 'product' - } - ], - - topAxis: [ - { - dataIndex: 'year' - }, - { - dataIndex: 'city' - } - ] - }); -}); \ No newline at end of file