谁能告诉我如何在TChart Control中禁用用户交互。

我知道如何在monotouch linechart.UserInteractionEnabled = false中做到这一点;

最佳答案

您应该使用此:

  tChart1.Zoom.Style = Steema.TeeChart.ZoomStyles.Classic;
  tChart1.Zoom.Allow = false;
  tChart1.Panning.Allow = ScrollModes.None;


ZoomStyles.Classic仍未完全实现。因此,现在不需要设置Zoom.Allow和Panning.Allow,但是一旦完成全部功能,就可以设置它。

更新:完整的ZoomStyles.Classic功能在4.14.6.25 version published on 26th June 2014中实现。

如果不是通过用户交互来禁用缩放和滚动/平移,请告诉我。

关于android - monodroid Steema.TeeChart.TChart:如何禁用用户交互,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16563360/

10-12 00:03