如何禁用移动TeeChart在Xamarin.Android



我有麻烦了:我有Xamarin。使用TeeChart的Android应用程序。创建图表并显示数据后,我可以单击图表并拖动到应用程序的任何位置。有没有人知道怎么禁用移动图图?

var tChart1 = new TChart(this);
            tChart1.Legend.Visible = false;
            tChart1.Aspect.View3D = !tChart1.Aspect.View3D;
            tChart1.Header.Text = String.Empty;
            tChart1.Clickable = false;
            tChart1.Enabled = false;
            tChart1.Axes.Left.Labels.ValueFormat = "###.0";
            tChart1.Clickable = false;
            tChart1.Axes.Left.Visible = true;
            tChart1.Axes.Left.LabelsOnAxis = true;
            tChart1.Axes.Top.Visible = false;
            tChart1.Axes.Right.Visible = false;
            tChart1.Axes.Right.LabelsOnAxis = true;
            tChart1.Axes.Bottom.LabelsOnAxis = false;

With TeeChart for Xamarin。Android你可以禁用缩放和平移设置缩放。样式缩放样式。经典和一些缩放和平移设置如下所示:

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

请记住此功能仅在几周前发布的4.14.6.25版本中可用。因此,如果您使用的是旧版本,请将其更新到最新版本才能使用此功能。

相关内容

  • 没有找到相关文章

最新更新