2014-07-16 48 views
0

我在麻煩:我有Xamarin.Android應用程序中使用TeeChart。在創建圖表並顯示數據之後,我可以點擊圖表並拖動到應用程序的任何位置。可能有人知道如何禁用移動TeeChart?如何禁用Xamarin.Android移動TeeChart?

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; 

回答

1

用的TeeChart爲Xamarin.Android如下所示,你可以禁用縮放和平移設置Zoom.StyleZoomStyles.Classic和一些縮放和平移設置:

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

請緊請注意,此功能僅在幾周前發佈的4.14.6.25 version中可用。因此,如果您使用的是舊版本,請將其更新爲最新版本,以便能夠使用此功能。

+0

謝謝,它的作品! –