C# 使用GDI繪制雷達(dá)圖的實(shí)例
最近項(xiàng)目要用C#實(shí)現(xiàn)畫一個(gè)雷達(dá)圖,搜了搜網(wǎng)上竟然找不到C#畫雷達(dá)圖的解決方案,那么自己實(shí)現(xiàn)一個(gè)吧
實(shí)現(xiàn)效果如下圖:
代碼如下:
public static class RadarDemo { static float mW = 1200; static float mH = 1200; static Dictionary<string, float> mData = new Dictionary<string, float> { //{ "速度",77}, { "力量", 72}, { "防守", 110}, { "射門", 50}, { "傳球", 80}, { "耐力", 60 } };//維度數(shù)據(jù) static float mCount = mData.Count; //邊數(shù) static float mCenter = mW * 0.5f; //中心點(diǎn) static float mRadius = mCenter - 100; //半徑(減去的值用于給繪制的文本留空間) static double mAngle = (Math.PI * 2) / mCount; //角度 static Graphics graphics = null; static int mPointRadius = 5; // 各個(gè)維度分值圓點(diǎn)的半徑 static int textFontSize = 18; //頂點(diǎn)文字大小 px const string textFontFamily = "Microsoft Yahei"; //頂點(diǎn)字體 static Color lineColor = Color.Green; static Color fillColor = Color.FromArgb(128, 255, 0, 0); static Color fontColor = Color.Black; public static void Show() { Bitmap img = new Bitmap((int)mW, (int)mH); graphics = Graphics.FromImage(img); graphics.Clear(Color.White); img.Save($"{AppDomain.CurrentDomain.BaseDirectory}radar/0.png", ImageFormat.Png); DrawPolygon(graphics); img.Save($"{AppDomain.CurrentDomain.BaseDirectory}radar/1.png", ImageFormat.Png); DrawLines(graphics); img.Save($"{AppDomain.CurrentDomain.BaseDirectory}radar/2.png", ImageFormat.Png); DrawText(graphics); img.Save($"{AppDomain.CurrentDomain.BaseDirectory}radar/3.png", ImageFormat.Png); DrawRegion(graphics); img.Save($"{AppDomain.CurrentDomain.BaseDirectory}radar/4.png", ImageFormat.Png); DrawCircle(graphics); img.Save($"{AppDomain.CurrentDomain.BaseDirectory}radar/5.png", ImageFormat.Png); img.Dispose(); graphics.Dispose(); } // 繪制多邊形邊 private static void DrawPolygon(Graphics ctx) { var r = mRadius / mCount; //單位半徑 Pen pen = new Pen(lineColor); //畫6個(gè)圈 for (var i = 0; i < mCount; i++) { var points = new List<PointF>(); var currR = r * (i + 1); //當(dāng)前半徑 //畫6條邊 for (var j = 0; j < mCount; j++) { var x = (float)(mCenter + currR * Math.Cos(mAngle * j)); var y = (float)(mCenter + currR * Math.Sin(mAngle * j)); points.Add(new PointF { X = x, Y = y }); } ctx.DrawPolygon(pen, points.ToArray()); //break; } ctx.Save(); } //頂點(diǎn)連線 private static void DrawLines(Graphics ctx) { for (var i = 0; i < mCount; i++) { var x = (float)(mCenter + mRadius * Math.Cos(mAngle * i)); var y = (float)(mCenter + mRadius * Math.Sin(mAngle * i)); ctx.DrawLine(new Pen(lineColor), new PointF { X = mCenter, Y = mCenter }, new PointF { X = x, Y = y }); //break; } ctx.Save(); } //繪制文本 private static void DrawText(Graphics ctx) { var fontSize = textFontSize;//mCenter / 12; Font font = new Font(textFontFamily, fontSize, FontStyle.Regular); int i = 0; foreach (var item in mData) { var x = (float)(mCenter + mRadius * Math.Cos(mAngle * i)); var y = (float)(mCenter + mRadius * Math.Sin(mAngle * i) - fontSize); if (mAngle * i > 0 && mAngle * i <= Math.PI / 2) { ctx.DrawString(item.Key, font, new SolidBrush(fontColor), x - ctx.MeasureString(item.Key, font).Width * 0.5f, y + fontSize/* y + fontSize*/); } else if (mAngle * i > Math.PI / 2 && mAngle * i <= Math.PI) { ctx.DrawString(item.Key, font, new SolidBrush(fontColor), x - ctx.MeasureString(item.Key, font).Width, y /*y + fontSize*/); } else if (mAngle * i > Math.PI && mAngle * i <= Math.PI * 3 / 2) { ctx.DrawString(item.Key, font, new SolidBrush(fontColor), x - ctx.MeasureString(item.Key, font).Width, y); } else if (mAngle * i > Math.PI * 3 / 2) { ctx.DrawString(item.Key, font, new SolidBrush(fontColor), x - ctx.MeasureString(item.Key, font).Width * 0.5f, y - fontSize * 0.5f); } else { ctx.DrawString(item.Key, font, new SolidBrush(fontColor), x, y /* y + fontSize*/); } i++; } ctx.Save(); } //繪制數(shù)據(jù)區(qū)域 private static void DrawRegion(Graphics ctx) { int i = 0; List<PointF> points = new List<PointF>(); foreach (var item in mData) { var x = (float)(mCenter + mRadius * Math.Cos(mAngle * i) * item.Value / 100); var y = (float)(mCenter + mRadius * Math.Sin(mAngle * i) * item.Value / 100); points.Add(new PointF { X = x, Y = y }); //ctx.DrawArc(new Pen(lineColor), x, y, r, r, 0, (float)Math.PI * 2); i++; } //GraphicsPath path = new GraphicsPath(); //path.AddLines(points.ToArray()); ctx.FillPolygon(new SolidBrush(fillColor), points.ToArray()); ctx.Save(); } //畫點(diǎn) private static void DrawCircle(Graphics ctx) { //var r = mCenter / 18; var r = mPointRadius; int i = 0; foreach (var item in mData) { var x = (float)(mCenter + mRadius * Math.Cos(mAngle * i) * item.Value / 100); var y = (float)(mCenter + mRadius * Math.Sin(mAngle * i) * item.Value / 100); ctx.FillPie(new SolidBrush(fillColor), x - r, y - r, r * 2, r * 2, 0, 360); //ctx.DrawArc(new Pen(lineColor), x, y, r, r, 0, (float)Math.PI * 2); i++; } ctx.Save(); } }
把這個(gè)類粘貼到你的項(xiàng)目中,執(zhí)行RadarDemo.Show();就會(huì)在你的根目錄里生成雷達(dá)圖了,為了方便理解怎么畫出來的,我把畫每一個(gè)步驟時(shí)的圖片都保存下來了??梢宰孕羞\(yùn)行查看
總結(jié)
以上所述是小編給大家介紹的C# 使用GDI繪制雷達(dá)圖的實(shí)例,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)我們網(wǎng)站的支持!
如果你覺得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!
上一篇:Unity實(shí)現(xiàn)手機(jī)搖一搖震動(dòng)
欄 目:C#教程
本文標(biāo)題:C# 使用GDI繪制雷達(dá)圖的實(shí)例
本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/4608.html
您可能感興趣的文章
- 01-10WinForm繪制圓角的方法
- 01-10C#使用Dispose模式實(shí)現(xiàn)手動(dòng)對(duì)資源的釋放
- 01-10C#3.0使用EventLog類寫Windows事件日志的方法
- 01-10C#使用windows服務(wù)開啟應(yīng)用程序的方法
- 01-10c# ArrayList的使用方法小總結(jié)
- 01-10C#使用ADO.Net部件來訪問Access數(shù)據(jù)庫的方法
- 01-10C#使用Mutex簡(jiǎn)單實(shí)現(xiàn)程序單實(shí)例運(yùn)行的方法
- 01-10使用Nopcommerce為商城添加滿XX減XX優(yōu)惠券功能
- 01-10C#繪制曲線圖的方法
- 01-10C#中yield用法使用說明


閱讀排行
- 1C語言 while語句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹的示例代碼(圣誕
- 3利用C語言實(shí)現(xiàn)“百馬百擔(dān)”問題方法
- 4C語言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 01-10C#通過反射獲取當(dāng)前工程中所有窗體并
- 01-10關(guān)于ASP網(wǎng)頁無法打開的解決方案
- 01-10WinForm限制窗體不能移到屏幕外的方法
- 01-10WinForm繪制圓角的方法
- 01-10C#實(shí)現(xiàn)txt定位指定行完整實(shí)例
- 01-10WinForm實(shí)現(xiàn)仿視頻播放器左下角滾動(dòng)新
- 01-10C#停止線程的方法
- 01-10C#實(shí)現(xiàn)清空回收站的方法
- 01-10C#通過重寫Panel改變邊框顏色與寬度的
- 01-10C#實(shí)現(xiàn)讀取注冊(cè)表監(jiān)控當(dāng)前操作系統(tǒng)已
隨機(jī)閱讀
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改
- 01-10C#中split用法實(shí)例總結(jié)
- 01-10delphi制作wav文件的方法
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 04-02jquery與jsp,用jquery
- 01-10使用C語言求解撲克牌的順子及n個(gè)骰子
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-11ajax實(shí)現(xiàn)頁面的局部加載