我正在嘗試將圖表添加到我的Sencha Touch應用程序中。用Sencha Touch 2創建圖表?
我加入了這樣的觀點,並插入圖表我怎麼看見它的一對夫婦的網站:
Ext.define('dergraph.view.Graph', {
extend: 'Ext.Container',
xtype: 'graph',
requires: [
'Ext.TitleBar'
],
config: {
tabBarPosition: 'bottom',
layout: 'fit',
items: [
{
xtype: 'chart',
animate: true,
store: 'dergraph.store.PhoneBook',
legend: {
position: 'right'
},
axes: [{
type: 'Category',
fields: ['firstName'],
position: 'bottom', //x-axis
title: 'Category'
}, {
type: 'Numeric',
fields: ['value'],
position: 'left', //y-axis
title: 'Value'
}]
}
]
}
});
但現在我在瀏覽器的控制檯中的錯誤有:未捕獲的錯誤: Ext.createByAlias]無法創建無法識別別名的實例:axis.Category。
這是app.js我需要部分:
requires: [
'Ext.MessageBox',
'Ext.dataview.List',
'Ext.chart.Chart',
'Ext.chart.axis.Numeric',
'Ext.chart.axis.Category'
],
有人可以幫我嗎?
謝謝,它現在可以工作! 我以前在main.js中的xtype查看該網站是這樣的: { 的xtype: '曲線' 標題: '圖表', iconCls: '撰寫' } 是不是錯了? – torhoehn
要在Ext4或Touch中創建新的xtype,您應該在定義中使用[別名](http://docs.sencha.com/touch/2.2.1/#!/api/Ext.Class-cfg-alias) :'別名:widget.graph'。然後,你可以使用例如'Ext.widget({title:'Graph',xtype:'graph'})'或者作爲item,'Ext.widget({xtype:'panel',items:[{xtype :'graph'}]})'。不過,不確定這對主視圖非常有用。 – rixo