文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Xamarin图表开发基础教程(8)OxyPlot框架

2023-06-04 23:18

关注

Xamarin图表开发基础教程(8)OxyPlot框架

【示例OxyPlotFormsDemo】在Xamarin.Forms中实现线图的显示。

(1)打开Xamarin.Forms项目。

(2)将OxyPlot.Xamarin.Forms组件添加到各个子项目中的引入中。

(3)打开OxyPlotFormsDemo.Android子项目的MainActivity.cs文件,初始化OxyPlot渲染器,代码如下:

using System;using Android.App;using Android.Content.PM;using Android.Runtime;using Android.Views;using Android.Widget;using Android.OS;namespace OxyPlotFormsDemo.Droid{    [Activity(Label = "OxyPlotFormsDemo", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]    public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity    {        protected override void OnCreate(Bundle savedInstanceState)        {            TabLayoutResource = Resource.Layout.Tabbar;            ToolbarResource = Resource.Layout.Toolbar;            base.OnCreate(savedInstanceState);            Xamarin.Essentials.Platform.Init(this, savedInstanceState);            global::Xamarin.Forms.Forms.Init(this, savedInstanceState);            OxyPlot.Xamarin.Forms.Platform.Android.PlotViewRenderer.Init();            LoadApplication(new App());        }    }}

(4)打开OxyPlotFormsDemo.iOS子项目的AppDelegate.cs文件,初始化OxyPlot渲染器,代码如下:

using System;using System.Collections.Generic;using System.Linq;using Foundation;using UIKit;namespace OxyPlotFormsDemo.iOS{    [Register("AppDelegate")]    public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate    {        public override bool FinishedLaunching(UIApplication app, NSDictionary options)        {            global::Xamarin.Forms.Forms.Init();            OxyPlot.Xamarin.Forms.Platform.iOS.PlotViewRenderer.Init();            LoadApplication(new App());            return base.FinishedLaunching(app, options);        }    }}

(5)打开App.xaml.cs文件,完成剩余的步骤,即创建PlotView视图、绘制图表、设置显示模式等。代码如下:

using OxyPlot;using OxyPlot.Axes;using OxyPlot.Series;using OxyPlot.Xamarin.Forms;using System;using Xamarin.Forms;using Xamarin.Forms.Xaml;namespace OxyPlotFormsDemo{    public partial class App : Application    {        public App()        {            MainPage = new ContentPage            {                //创建并将主页面的内容设置为PlotView                Content = new PlotView                {                    Model = CreatePlotModel(),                    VerticalOptions = LayoutOptions.Fill,                    HorizontalOptions = LayoutOptions.Fill,                }            };        }        //绘制图表        private PlotModel CreatePlotModel()        {            //创建图表模式            var plotModel = new PlotModel            {                Title = "OxyPlot Demo"            };            //添加坐标轴            plotModel.Axes.Add(new LinearAxis { Position = AxisPosition.Bottom });            plotModel.Axes.Add(new LinearAxis { Position = AxisPosition.Left, Maximum = 10, Minimum = 0 });            //创建数据列            var series1 = new LineSeries            {                Title = "Data",                MarkerType = MarkerType.Circle,                MarkerSize = 4,                MarkerStroke = OxyColors.White            };            //添加数据点            series1.Points.Add(new DataPoint(0.0, 6.0));            series1.Points.Add(new DataPoint(1.4, 2.1));            series1.Points.Add(new DataPoint(2.0, 4.2));            series1.Points.Add(new DataPoint(3.3, 2.3));            series1.Points.Add(new DataPoint(4.7, 7.4));            series1.Points.Add(new DataPoint(6.0, 6.2));            series1.Points.Add(new DataPoint(8.9, 8.9));            //添加数据列            plotModel.Series.Add(series1);            return plotModel;        }        ……    }}

运行程序,会看到如图1.3所示的效果。

 Xamarin图表开发基础教程(8)OxyPlot框架

图1.3  Android的效果与 iOS的效果

 

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 资料下载
  • 历年真题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯