TeeChart标签,当屏幕密度>1时,在Android上的Y轴上定位错误密度越大,情况就越糟。
"有趣"的是,我无法摆脱3D模型的"位移"或"深度"。
iphone上的相同代码没有问题。
不知何故,Aspect.View3D=false在安卓系统上的作用与在iphone上的作用不同。
我正在使用Styles.Area()
我的一个小问题https://i.stack.imgur.com/VGXPJ.jpg
编辑:图表代码
using System;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using System.Drawing;
namespace App2
{
[Activity(Label = "App2", MainLauncher = true, Icon = "@drawable/icon")]
public class MainActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
Steema.TeeChart.TChart tChart1 = new Steema.TeeChart.TChart(this);
Steema.TeeChart.Styles.Area area = new Steema.TeeChart.Styles.Area();
tChart1.Series.Add(area);
tChart1.Aspect.View3D = false;
tChart1.Axes.Left.Visible = true;
tChart1.Axes.Left.AutomaticMaximum = false;
tChart1.Axes.Left.AutomaticMinimum = false;
tChart1.Axes.Left.Maximum = 140;
tChart1.Axes.Left.Minimum = 20;
tChart1.Axes.Left.Labels.Items.Add(40, " 40");
tChart1.Axes.Left.Labels.Items.Add(60, " 60");
tChart1.Axes.Left.Labels.Items.Add(80, " 80");
tChart1.Axes.Left.Labels.Items.Add(100, "100");
tChart1.Axes.Left.Labels.Items.Add(120, "[dB]");
SetContentView(tChart1);
}
}
}
这对我来说就像一个bug。我已经将它添加到了Steema Software的bug跟踪系统中(bug#1128)。它已经被修复了。如果你感兴趣,我可以提供带修复的测试组件。评估版本可在此处下载。