extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
22 lines (17 loc) • 405 B
JavaScript
Ext.define('KitchenSink.store.DayHour', {
extend: 'Ext.data.Store',
alias: 'store.dayhour',
fields: [
{name: 'day', type: 'number'},
{name: 'hour', type: 'number'},
{name: 'value', type: 'number'}
],
proxy: {
type: 'ajax',
url: 'data/heatmap/heatmap1.json',
reader: {
type: 'json'
}
},
autoLoad: true
});