在TeeChart中使用鼠标滚轮滚动图表

用户名

滚动图表的默认方式是拖动鼠标并按住鼠标右键。我需要用鼠标滚轮滚动。我尚未找到任何启​​用/禁用鼠标滚轮滚动的API。

我还尝试将MouseWheelListener添加到图表本身,但从未调用过它。

是否可以在TeeChart lib中使用鼠标滚轮?

我的应用程序是使用SWT的Eclipse RCP。

耶雷

以下代码对我在Eclipse中使用TeeChart Java SWT的工作正常:

Bar bar1 = new Bar(tChart1.getChart());
bar1.fillSampleValues();

tChart1.addMouseWheelListener(new MouseWheelListener() {

    @Override
    public void mouseScrolled(MouseEvent arg0) {
        Axis tmpA = tChart1.getAxes().getLeft();
        double tmpInc = tmpA.getRange()/10;
        if (arg0.count>0)
            tmpA.setMinMax(tmpA.getMinimum()+tmpInc, tmpA.getMaximum()+tmpInc);
        else
            tmpA.setMinMax(tmpA.getMinimum()-tmpInc, tmpA.getMaximum()-tmpInc);
    }
});

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

如何在SWT中使用鼠标滚轮滚动滚动的合成

来自分类Dev

防止在Windows窗体中使用鼠标滚轮滚动

来自分类Dev

我不能在Eclipse XFCE中使用鼠标滚轮滚动

来自分类Dev

Extjs菜单无法在Firefox中使用鼠标滚轮滚动

来自分类Dev

使用鼠标滚轮在div上滚动div

来自分类Dev

使用鼠标滚轮滚动选择列表元素

来自分类Dev

我可以在git diff中使用鼠标滚轮滚动到新行吗?

来自分类Dev

鼠标滚轮水平滚动

来自分类Dev

如何在LibGDX中使用鼠标滚轮?

来自分类Dev

Javascript-使用鼠标滚轮平滑视差滚动

来自分类Dev

如何使用鼠标滚轮在scrollviewer中滚动列表框

来自分类Dev

使用鼠标滚轮在水平列表上进行水平滚动

来自分类Dev

使用鼠标滚轮或触摸滚动进行jQuery图像缩放

来自分类Dev

jQuery使用鼠标滚轮滚动到特定点

来自分类Dev

如何使用键盘通过AutoHotkey模拟鼠标滚轮滚动?

来自分类Dev

使用鼠标滚轮或触摸滚动进行jQuery图像缩放

来自分类Dev

使用鼠标滚轮滚动时WPF TreeView出现奇怪的问题

来自分类Dev

如何在 angular 上使用鼠标滚轮滚动到项目

来自分类Dev

如何使用鼠标滚轮滚动线性动画 div?

来自分类Dev

使QSliders忽略鼠标滚轮/滚动

来自分类Dev

抖动的鼠标滚轮水平滚动

来自分类Dev

增加鼠标滚轮滚动速度

来自分类Dev

启用鼠标滚轮的平滑滚动

来自分类Dev

增加鼠标滚轮滚动速度

来自分类Dev

JavaScript鼠标滚轮事件滚动

来自分类Dev

鼠标滚轮上的平滑滚动?

来自分类Dev

用鼠标滚轮跳动滚动

来自分类Dev

我的鼠标滚轮不滚动

来自分类Dev

在Multitail中使用鼠标滚动