我的线图表存在问题。
我正在制作它会每秒自动更新, 它将取“Ping Time”文本字段中的值, 然后将其放在图表上,即下一个“分钟”指数。
但是,当图表更新时,它将无法正确刷新轴。你可以在这里看到这个:
相关的代码片段是图表创建,
Ext.create('Ext.chart.Chart',{
renderTo:Ext.getBody(),
id:'ChartTest',
xtype: 'chart',
width: 400,
height:300,
store: testStore,
axes:[
{
title:'Ping Time',
type: 'Numeric',
position: 'left',
grid:true,
fields: ['ping'],
},
{
title:'Minutes',
type: 'Numeric',
position: 'bottom',
grid:true,
fields:['id'],
minimum:0,
}
],
series: [
{
type:'line',
xField:'id',
yField:'ping',
tips: {
trackMouse: true,
width: 80,
height: 40,
renderer: function(storeItem, item) {
this.setTitle(storeItem.get('id'));
this.update(storeItem.get('ping'));
}
}
}
],
});
以及刷新代码
var task = Ext.TaskManager.start({
run: function () {
min=min+1;
// max=max+1;
// Ext.getCmp('ChartTest').axes.items[1].maximum=max;
Ext.getCmp('ChartTest').axes.items[1].minimum=min;
test= Ext.getCmp('PingTime').getValue();
temp = temp+1;
Ext.getCmp('display').setValue('Temp = '+temp+' Test = '+test);
testStore.add({id:temp,ping:test});
var rec= testStore.getAt(0);
Ext.getCmp('display2').setValue('rec is '+rec.get('id'));
if(rec.get('id')<temp-8)
{
testStore.remove(rec);
}
Ext.getCmp('ChartTest').redraw();
},
interval: 2000
});
答案 0 :(得分:0)
尝试使用
Ext.getCmp('ChartTest').surface.removeAll();
在redraw()方法之前。
这不是一个完整的解决方案,因为仍然存在一些问题。例如,如果更改“Ping time”文本字段中的值,则Y轴将被破坏。此外,它可能无法在所有浏览器中正常工作,但我想这些额外的信息可能会帮助您找到最终的解决方案。