0

我正在尝试在 extjs 4 中设置一个仪表图表,该图表应该由从 data.Store 数据计算的“静态”值提供。

计算出的数据在 store 中的 datachange 监听器中获取。

我阅读了 setValue 方法,但我真的不明白如何使用它,谁能给我一些提示?

谢谢大家,N

4

1 回答 1

1

在将我的头撞到墙上几个小时后,我才发现它是如何工作的。这很明显:

// the value that you want to set up
var newValue = 35;
// a reference to the chart
var chart = Ext.getCmp('myChartId');
// setting the value
chart.series.items[0].setValue(newValue)

请注意,setValuechart.series.items[0]. 这是因为,尽管听起来很反直觉,但Gauge不是一种图表,而是一种系列

希望这对像我这样的其他 Ext 新手有所帮助,因为文档确实可以使用更多示例!

于 2012-02-13T17:41:53.483 回答