]> git.proxmox.com Git - sencha-touch.git/blame - src/examples/charts/app/store/ChartTypes.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / charts / app / store / ChartTypes.js
CommitLineData
c4685c84
TL
1Ext.define('Charts.store.ChartTypes', {
2 extend : 'Ext.data.Store',
3
4 requires : [
5 'Charts.model.ChartType'
6 ],
7
8 config : {
9 model : 'Charts.model.ChartType',
10
11 data : [
12 { id : 0, title : 'Bar Chart' },
13 { id : 1, title : 'Bar Chart Gradient' },
14 { id : 2, title : 'Finance' },
15 { id : 3, title : 'Multi-Series Pie' },
16 { id : 4, title : 'Pie with Label' },
17 { id : 5, title : 'Pie Scroller' },
18 ]
19 }
20});