小編給大家分享一下Xamamin iOS中如何使用OxyPlotiO框架繪制線圖,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
喀喇沁網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,喀喇沁網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為喀喇沁成百上千提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的喀喇沁做網(wǎng)站的公司定做!
【示例OxyPlotiOSDemo】下面將實(shí)現(xiàn)線圖的顯示。具體的操作步驟如下:
(1)打開(kāi)Xamarin.iOS項(xiàng)目。
(2)將OxyPlot.Xamarin.iOS組件添加到項(xiàng)目中的引入中。
(3)打開(kāi)ViewController.cs文件,完成剩余的步驟,即創(chuàng)建PlotView視圖、繪制圖表、設(shè)置顯示模式以及顯示PlotView。代碼如下:
using Foundation; using System; using UIKit; using OxyPlot.Xamarin.iOS; using OxyPlot; using OxyPlot.Axes; using OxyPlot.Series; namespace OxyPlotiOSDemo { public partial class ViewController : UIViewController { public ViewController (IntPtr handle) : base (handle) { } public override void ViewDidLoad () { base.ViewDidLoad (); // Perform any additional setup after loading the view, typically from a nib. //創(chuàng)建PlotView視圖 PlotView plotView = new PlotView { Frame = this.View.Frame }; plotView.Model=CreatePlotModel(); //設(shè)置顯示模式 this.View.Add(plotView); //將PlotView視圖添加到主視圖上 } //繪制圖表 private PlotModel CreatePlotModel() { //創(chuàng)建圖表模式 var plotModel = new PlotModel { Title = "OxyPlot Demo" }; //添加坐標(biāo)軸 plotModel.Axes.Add(new LinearAxis { Position = AxisPosition.Bottom }); plotModel.Axes.Add(new LinearAxis { Position = AxisPosition.Left, Maximum = 10, Minimum = 0 }); //創(chuàng)建數(shù)據(jù)列 var series1 = new LineSeries { Title = "Data", MarkerType = MarkerType.Circle, MarkerSize = 4, MarkerStroke = OxyColors.White }; //添加數(shù)據(jù)點(diǎn) 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)); //添加數(shù)據(jù)列 plotModel.Series.Add(series1); return plotModel; } …… } }
運(yùn)行程序,會(huì)看到如圖1.2所示的效果。
圖1.2 Xamarin.iOS平臺(tái)的線圖效果
以上是“Xamamin iOS中如何使用OxyPlotiO框架繪制線圖”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!