无法在Monotouch上使用Teechart正确显示2D图表

时间:2012-09-07 05:43:33

标签: xamarin.ios teechart

评估Teechart for .NET Monotouch for iOS的乐趣。遇到几个无法解决的问题。基本上我试图呈现一个带有两个或三个系列的2D条形图,最多包含24个数据点。

这是我的测试代码

    chart3.Aspect.View3D = false;
    chart3.Legend.Visible = false;
    chart3.Chart.Aspect.ZoomScrollStyle = Steema.TeeChart.Drawing.Aspect.ZoomScrollStyles.Auto;   

    Axis left=chart3.Axes.Left;
    left.Grid.Visible = false; 
    left.Automatic=false;
    left.Minimum=0;
    left.Maximum=20;
    left.Increment=1;

    Axis bottom=chart3.Axes.Bottom;
    bottom.Visible=true;
    bottom.Grid.Visible = false; 

    Steema.TeeChart.Styles.Bar bar1=new Steema.TeeChart.Styles.Bar();
    chart3.Series.Add(bar1);
    bar1.Add(12.0,"Jun 2012");  
    bar1.Add(8.0,"Jul 2012"); 
    bar1.Add(0.5,"Aug 2012"); 
    bar1.Add(6.7,"Sep 2012"); 
    bar1.Pen.Width = 0;
    bar1.Gradient.Visible = true;
    bar1.GetSeriesMark += (series, e) => {object v=series.YValues[e.ValueIndex];   e.MarkText=""+v;};

    Steema.TeeChart.Styles.Bar bar2=new Steema.TeeChart.Styles.Bar();
    chart3.Series.Add(bar2);
    bar2.Add(8.0,"Jun 2012"); 
    bar2.Add(5.0,"Jul 2012"); 
    bar2.Add(5.0,"Aug 2012"); 
    bar2.Add(14.0,"Sep 2012"); 
    bar2.Pen.Width = 0;
    bar2.Gradient.Visible = true;
    bar2.GetSeriesMark += (series, e) => {object v=series.YValues[e.ValueIndex];   e.MarkText=""+v;};

上面的代码创建了两个带有四个点的2D条形图系列。

这是我得到的结果 enter image description here 主要问题是所有条形都浮动在零点以上0.5点(左侧轴上注意8.5,其中值为8)。向上滚动显示了这一点 another image 我面临的第二个问题是库没有考虑最后一个轴的最大值设置。 如果我将Aspect.View3D设置为true,那么该图表看起来要好得多 enter image description here 3D带来了一系列问题,但无论如何我们都需要2D。

我的问题是:我做错了什么?

0 个答案:

没有答案