我在 extjs 4.1.0 中渲染值折线图时遇到问题。当从 4.0.2a 升级到 ext js 4.1.0 时,如果未给出 xField,则不会在折线图中呈现值,但在 extjs 4.02a 中,如果未给出 xField,则会呈现值。这是在 extjs 4.0.2a 中工作的代码:
{
xtype: 'chart',
height: 120,
id: 'accounts-per-day-chart',
insetPadding: 5,
store: 'CustomersStore',
flex: 5,
series: [
{
type: 'line',
highlight: true,
yField: [
'Customers'
],
fill: true,
selectionTolerance: 5
}
],
axes: [
{
type: 'Numeric',
dashSize: 2,
fields: [
'Customers'
],
majorTickSteps: 0,
position: 'left',
decimals: 0,
minimum: 0
}
]
}
xField 在 extjs 4.1.0 中是强制性的吗?请建议在不为 xField 声明值的情况下在折线图中呈现值的解决方案