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;
謝謝,它的作品! –