1

我有一个图表,我在其上显示非常小的间隔时间数据(接近 2 分钟),当我在centre图表上使用拖动放大时,对服务器的调用获取缩放后的数据,但在 x 轴上导航器(水平滚动)将放大的数据移动到extreme left它应该在时间线的中心。

Say for example timeline has interval in seconds as below

0---30---60---90---120
and I zoom in at 30 to 90
The navigator or scroll axis should have stayed at 0---120 and the focus part should be 30---90
but In my case it changing the navigator to 30 to 120 and focus area moves to extreme left.

Note: with bigger time intervals it works fine
4

1 回答 1

0

导航器调用setExtremes函数在任意轴上设置范围。不幸的是,这是默认行为,您不能部分缩放图表。

于 2014-03-04T10:11:59.557 回答