]> git.proxmox.com Git - extjs.git/blob - extjs/templates/executive-dashboard/app/model/StockOHLC.js
add extjs 6.0.1 sources
[extjs.git] / extjs / templates / executive-dashboard / app / model / StockOHLC.js
1 Ext.define('ExecDashboard.model.StockOHLC', {
2 extend: 'ExecDashboard.model.Base',
3
4 fields: [
5 'company',
6 'time',
7 'open',
8 'high',
9 'low',
10 'close'
11 ]
12 });