91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Xamamin iOS中如何使用OxyPlotiO框架繪制線圖

發布時間:2021-12-21 11:21:24 來源:億速云 閱讀:166 作者:小新 欄目:移動開發

小編給大家分享一下Xamamin iOS中如何使用OxyPlotiO框架繪制線圖,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

Xamamin iOS中繪制線圖OxyPlotiOSDemo

【示例OxyPlotiOSDemo】下面將實現線圖的顯示。具體的操作步驟如下:

(1)打開Xamarin.iOS項目。

(2)將OxyPlot.Xamarin.iOS組件添加到項目中的引入中。

(3)打開ViewController.cs文件,完成剩余的步驟,即創建PlotView視圖、繪制圖表、設置顯示模式以及顯示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.
            //創建PlotView視圖
            PlotView plotView = new PlotView
            {
                Frame = this.View.Frame
            };
            plotView.Model=CreatePlotModel();                                                    //設置顯示模式
            this.View.Add(plotView);                                                                        //將PlotView視圖添加到主視圖上
        }
        //繪制圖表
        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.2所示的效果。

 Xamamin iOS中如何使用OxyPlotiO框架繪制線圖

圖1.2  Xamarin.iOS平臺的線圖效果

以上是“Xamamin iOS中如何使用OxyPlotiO框架繪制線圖”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

浦东新区| 云林县| 阳曲县| 巴林左旗| 浙江省| 夏邑县| 鄢陵县| 锦州市| 开化县| 杭锦旗| 洛南县| 津市市| 霍山县| 青河县| 黄石市| 司法| 惠州市| 乐东| 海丰县| 萨迦县| 盐池县| 明溪县| 西林县| 石棉县| 延安市| 玉门市| 沧州市| 方正县| 芦溪县| 抚顺市| 清水河县| 五大连池市| 霍山县| 永吉县| 抚远县| 海盐县| 秦皇岛市| 长阳| 阿拉尔市| 富顺县| 通许县|