谁能告诉我如何在 TChart Control 中禁用用户交互。
我知道如何在 monotouch linechart.UserInteractionEnabled = false 中做到这一点;
谁能告诉我如何在 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功能在2014 年 6 月 26 日发布的 4.14.6.25 版本中实现。
如果禁用缩放和滚动/平移不是用户交互的意思,请告诉我。
如果您只想查看创建的图表而不是由用户控件操作,为什么不直接禁用它呢?
tChart1.Enabled = false;