xamarin中的Oxyplot未生成

时间:2018-07-28 06:07:39

标签: xamarin oxyplot

我遇到了用动态数据生成oxyplot的问题。这是我第一次对动态数据使用oxyplot。

public async Task<PlotModel> AreaChart_NoOfPoliciesAsync()
    {
        var plotModel1 = new PlotModel { Title = "Number of Policies with last year" };

        plotModel1.InvalidatePlot(true);
        try
        {


            var s1 = new AreaSeries()
            {
                Title = "Number of policies in last year",
                Color = OxyColors.LightPink,
                MarkerType = MarkerType.Circle,
                MarkerSize = 6,
                MarkerStroke = OxyColors.White,
                MarkerFill = OxyColors.LightPink,
                MarkerStrokeThickness = 1.5
            };

            string year_str = DateTime.Today.AddYears(-1).ToString("yyyy");
            int running_month = 1;
            string running_month_str;

            List<MonthlyPerformance> last_year = await _apiServices.GetMonthlyPerformance(Settings.AccessToken, Settings.agentCode, year_str);

            last_year = last_year.FindAll(x => x.BUSS_TYPE == "Total");
            last_year.Sort((x, y) => x.Y_MONTH.CompareTo(y.Y_MONTH));


            s1.Points.Add(new DataPoint(0, 0));
    foreach (MonthlyPerformance item in last_year)
            {
        s1.Points.Add(new DataPoint(running_month, item.NO_BUSINESS));
        running_month++;
    }
    plotModel1.Series.Add(s1);

            plotModel1.Axes.Add(new LinearAxis { Position = AxisPosition.Left, IsPanEnabled = false, IsZoomEnabled = false });
            plotModel1.Axes.Add(new LinearAxis { Position = AxisPosition.Bottom, IsPanEnabled = false, IsZoomEnabled = false });

    return plotModel1;}

使用用于演示的硬编码值生成的图。但是当功能

 List<MonthlyPerformance> last_year = await _apiServices.GetMonthlyPerformance(Settings.AccessToken, Settings.agentCode, year_str);

被调用,没有生成oxyplot。我只是得到一个空白。我没有任何编译错误。

我正在使用MVVM。有人可以指出我在这里做错了什么。 提前致谢。

1 个答案:

答案 0 :(得分:0)

一旦删除了等待和异步,图表就会出现。

我认为这不是解决问题的正确方法。但是我用光了开发时间。