Динамическая диаграмма JSON - PullRequest
0 голосов
/ 15 декабря 2011

Я пытаюсь использовать сенсорные диаграммы Sencha с JSONStore для динамического отображения диаграммы на основе информации, предоставленной JSON, серий и данных.Это стало возможным в ExtJS 3 со свойством metaData.

Как мне сделать то же самое с сенсорными диаграммами Sencha?

Ответы [ 2 ]

0 голосов
/ 23 декабря 2011
0 голосов
/ 20 декабря 2011
//    Am using ruby for the webservice calls.

// First u have to create model and store for that



// model 
 Ext.regModel('samplemodel', {
idProperty: 'name',
fields: [ { name: 'name', type: 'string' },
              { name: 'data', type: 'int' }
            ]
});

// store
Ext.regStore('SampleStore', {
model: 'samplemodel',
storeId: "sampleStoreID",
sorters: [ {
    property: 'name'
}]
});

// and create a variable for the store 

var sampleStore = Ext.getStore("SampleStore");

// call the webservice and store it in array,
// bind the response to the store,
// use the store variable in the chart.
...