这是我的标签包含饼图的代码
{
xtype: 'container',
title: 'Chart',
iconCls: 'chart',
itemId: 'chart_Tab',
layout: {
type: 'fit'
},
items: [
{
xtype: 'polar',
autoDestroy: false,
colors: [
'#115fa6',
'#94ae0a',
'#a61120',
'#ff8809',
'#ffd13e',
'#a61187',
'#24ad9a',
'#7c7474',
'#a66111'
],
store: 'elementstore',
series: [
{
type: 'pie',
xField: 'numValue'
}
],
interactions: [
{
type: 'rotate'
}
]
}
]
},
问题是,它确实显示了什么,但也没有崩溃...... 我检查了我的商店里装满了要展示的模特。
这是这张图表的输出...所有的都是''gpl sencha生成的标签''根本没有图表...所以我猜错了但是我不能把手指放在上面,+那里绝对没有来自sencha团队的工作例子......
仍然没有工作会有人对这个原因有什么想法吗?
答案 0 :(得分:0)
尝试更改
store: 'elementstore',
要
`store: elementstore,`,
答案 1 :(得分:0)
图表文件不包含在免费版Sencha Touch中,也不包含在试用版中。
如果您在本地服务器(app.html)而不是index.html中运行它,您将看不到任何内容。