1. Download the zedGraph control: http://download.csdn.net/detail/allisnew/322251
2. Add a reference to zedGraph.dll
3. At the end of the toolbox Add a regular control on the interface--Browse--Select zedgraph.dll
4. Write the following initialization code (you can also drag a control directly):
private ZedGraphControl zedGraphControl1 = new ZedGraphControl(); this.zedGraphControl1.Location = new System.Drawing.Point(36, 48); this.zedGraphControl1.Name = "zedGraphControl1"; this.zedGraphControl1.ScrollGrace = 0; this.zedGraphControl1.ScrollMaxX = 0; this.zedGraphControl1.ScrollMaxY = 0; this.zedGraphControl1.ScrollMaxY2 = 0; this.zedGraphControl1.ScrollMinX = 0; this.zedGraphControl1.ScrollMinY = 0; this.zedGraphControl1.ScrollMinY2 = 0; this.zedGraphControl1.Size = new System.Drawing.Size(427, 247); this.zedGraphControl1.TabIndex = 0; this.Controls.Add(zedGraphControl1);
5. Write the drawing code:
private void ShowChart() { zedGraphControl1.GraphPane.CurveList.Clear(); zedGraphControl1.GraphPane.GraphObjList.Clear(); // clearing not teste GraphPane myPane = zedGraphControl1.GraphPane; myPane.Title.Text = "消费者学历统计"; //设计图表的标题 myPane.XAxis.Title.Text = "学历类型"; //X轴标题 myPane.YAxis.Title.Text = "人数"; //Y轴标题 // myPane.XAxis.Type = ZedGraph.AxisType.Date; // Date wont work in our case PointPairList PPLa = new PointPairList(); PointPairList PPLb = new PointPairList(); PointPairList PPLc = new PointPairList(); PointPairList PPLd = new PointPairList(); for (int i = 1; i < 2; i++) { PPLa.Add(i, i + 3); PPLb.Add(i + 1, i + 4); PPLc.Add(i + 2, i + 5); PPLd.Add(i + 3, i + 6); } // dragged drawing baritems out of forloop BarItem myBara = myPane.AddBar("A", PPLa, Color.Red); BarItem myBarb = myPane.AddBar("B", PPLb, Color.Blue); BarItem myBarc = myPane.AddBar("C", PPLc, Color.Gray); BarItem myBard = myPane.AddBar("D", PPLd, Color.Black); zedGraphControl1.AxisChange(); zedGraphControl1.Refresh();//这句话非常重要,否则不会立即显示 }
If you need to display text on the abscissa:
private void ShowChart() { zedGraphControl1.GraphPane.CurveList.Clear(); zedGraphControl1.GraphPane.GraphObjList.Clear(); // clearing not teste GraphPane myPane = zedGraphControl1.GraphPane; // 画图面版标题 myPane.Title.Text = "收入统计"; // 画图面版X标题 myPane.XAxis.Title.Text = "区域"; myPane.XAxis.Scale.Min = 0; //初始化数据 PointPairList list = new PointPairList(); PointPairList list2 = new PointPairList(); PointPairList list3 = new PointPairList(); for (int i = 0; i < 5; i++)////这里的数量要和lable的一致,比如横坐标显示了5个lable,这里就要给5个 { list.Add(i, i+1); list2.Add(i, i + 2); list3.Add(i, i + 3); } // 画图面版Y标题 myPane.YAxis.Title.Text = "销售情况"; //柱的画笔 // public BarItem AddBar(string 名称, IPointList 数据, Color 颜色); BarItem myCurve = myPane.AddBar("收入1", list, Color.Blue); BarItem myCurve1 = myPane.AddBar("收入2", list2, Color.Purple); BarItem myCurve2 = myPane.AddBar("收入3", list3, Color.YellowGreen); //myCurve.Bar.Fill = new Fill(Color.Blue, Color.White, Color.Blue);//渐变 // BarItem myCurve2 = myPane.AddBar("买农药", list2, Color.Red); // myCurve2.Bar.Fill = new Fill(Color.Red, Color.White, Color.Red); // BarItem myCurve3 = myPane.AddBar("买化肥", list3, Color.Green); // myCurve3.Bar.Fill = new Fill(Color.Green, Color.White, Color.Green); //myPane.XAxis.MajorTic.IsBetweenLabels = true; //XAxis标注 string[] labels = { "产品1", "产品2", "产品3", "产品4", "产品5" }; myPane.XAxis.Scale.TextLabels = labels; myPane.XAxis.Type = AxisType.Text; //图区以外的颜色 // myPane.Fill = new Fill(Color.White, Color.FromArgb(200, 200, 255), 45.0f); //背景颜色 // myPane.Chart.Fill = new Fill(Color.Red, Color.LightGoldenrodYellow, 45.0f); zedGraphControl1.AxisChange(); zedGraphControl1.Refresh(); }
The above is the detailed explanation of using zedgraph to draw histograms in C#. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

C# is a programming language, while .NET is a software framework. 1.C# is developed by Microsoft and is suitable for multi-platform development. 2..NET provides class libraries and runtime environments, and supports multilingual. The two work together to build modern applications.

C#.NET is a powerful development platform that combines the advantages of the C# language and .NET framework. 1) It is widely used in enterprise applications, web development, game development and mobile application development. 2) C# code is compiled into an intermediate language and is executed by the .NET runtime environment, supporting garbage collection, type safety and LINQ queries. 3) Examples of usage include basic console output and advanced LINQ queries. 4) Common errors such as empty references and type conversion errors can be solved through debuggers and logging. 5) Performance optimization suggestions include asynchronous programming and optimization of LINQ queries. 6) Despite the competition, C#.NET maintains its important position through continuous innovation.

The future trends of C#.NET are mainly focused on three aspects: cloud computing, microservices, AI and machine learning integration, and cross-platform development. 1) Cloud computing and microservices: C#.NET optimizes cloud environment performance through the Azure platform and supports the construction of an efficient microservice architecture. 2) Integration of AI and machine learning: With the help of the ML.NET library, C# developers can embed machine learning models in their applications to promote the development of intelligent applications. 3) Cross-platform development: Through .NETCore and .NET5, C# applications can run on Windows, Linux and macOS, expanding the deployment scope.

The latest developments and best practices in C#.NET development include: 1. Asynchronous programming improves application responsiveness, and simplifies non-blocking code using async and await keywords; 2. LINQ provides powerful query functions, efficiently manipulating data through delayed execution and expression trees; 3. Performance optimization suggestions include using asynchronous programming, optimizing LINQ queries, rationally managing memory, improving code readability and maintenance, and writing unit tests.

How to build applications using .NET? Building applications using .NET can be achieved through the following steps: 1) Understand the basics of .NET, including C# language and cross-platform development support; 2) Learn core concepts such as components and working principles of the .NET ecosystem; 3) Master basic and advanced usage, from simple console applications to complex WebAPIs and database operations; 4) Be familiar with common errors and debugging techniques, such as configuration and database connection issues; 5) Application performance optimization and best practices, such as asynchronous programming and caching.

C# is widely used in enterprise-level applications, game development, mobile applications and web development. 1) In enterprise-level applications, C# is often used for ASP.NETCore to develop WebAPI. 2) In game development, C# is combined with the Unity engine to realize role control and other functions. 3) C# supports polymorphism and asynchronous programming to improve code flexibility and application performance.

C# and .NET are suitable for web, desktop and mobile development. 1) In web development, ASP.NETCore supports cross-platform development. 2) Desktop development uses WPF and WinForms, which are suitable for different needs. 3) Mobile development realizes cross-platform applications through Xamarin.

The C#.NET ecosystem provides rich frameworks and libraries to help developers build applications efficiently. 1.ASP.NETCore is used to build high-performance web applications, 2.EntityFrameworkCore is used for database operations. By understanding the use and best practices of these tools, developers can improve the quality and performance of their applications.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 English version
Recommended: Win version, supports code prompts!

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
