- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[DEVEXPRESS] Hướng dẫn vẽ biểu đồ Bar Chart trên Winform
Xin chào các bạn, bài viết hôm nay mình hướng dẫn các bạn vẽ biểu đồ Bar Chart của ChartControl trên Devexpress Winform C#.
[DEVEXPRESS] Vẽ biểu đồ Bar Chart trên winform C#
Dưới đây, là hình ảnh demo ứng dụng:
Source code C#:
using DevExpress.XtraCharts;
using DevExpress.XtraCharts.Native;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace BarChartDemo
{
public partial class Form1 : DevExpress.XtraEditors.XtraForm
{
public Form1()
{
InitializeComponent();
}
class DataDemo
{
public string name { get; set; }
public int value { get; set; }
}
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
var listData = new List<DataDemo>();
listData.Add(new DataDemo() { name = "Apple", value = 1500});
listData.Add(new DataDemo() { name = "Banana", value = 450});
listData.Add(new DataDemo() { name = "Orange", value = 250});
listData.Add(new DataDemo() { name = "Lemon", value = 3500});
listData.Add(new DataDemo() { name = "Strawberry", value = 800});
listData.Add(new DataDemo() { name = "Longan", value = 15});
listData.Add(new DataDemo() { name = "Mango", value = 0});
listData.Add(new DataDemo() { name = "Avocado", value = 560});
listData.Add(new DataDemo() { name = "Cherry", value = 150});
chartControl1.DataSource = listData;
Series series1 = new Series("fruit", ViewType.StackedBar);
series1.ArgumentDataMember = "name";
series1.ValueDataMembers.AddRange("value");
series1.LabelsVisibility = DevExpress.Utils.DefaultBoolean.True;
series1.Label.TextPattern = "{V:#,###.##}";
series1.View.Color = ColorTranslator.FromHtml("#21A1F1");
series1.Label.TextAlignment = StringAlignment.Far;
chartControl1.Series.AddRange(new Series[] { series1 });
var label = chartControl1.Series[0].Label as SideBySideBarSeriesLabel;
if (label != null)
{
label.Position = BarSeriesLabelPosition.Top;
}
((XYDiagram)chartControl1.Diagram).Rotated = true;
((XYDiagram)chartControl1.Diagram).AxisX.Tickmarks.MinorVisible = false;
((XYDiagram)chartControl1.Diagram).AxisX.Reverse = true;
// Disable minor tickmarks on the x-axis:
XYDiagram diagram = (XYDiagram)chartControl1.Diagram;
diagram.AxisX.Tickmarks.MinorVisible = false;
diagram.AxisX.Label.TextPattern = "{V:#,###.##}";
chartControl1.Titles.Add(new ChartTitle { Text = "Sales by Products - LAPTRINHVB.NET", DXFont = new Font("Tahoma", 14, FontStyle.Bold), TextColor=Color.Orange });
chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
chartControl1.Legend.MarkerMode = LegendMarkerMode.None;
chartControl1.Legend.AlignmentHorizontal = LegendAlignmentHorizontal.Center;
chartControl1.Legend.AlignmentVertical = LegendAlignmentVertical.BottomOutside;
chartControl1.Legend.Direction = LegendDirection.LeftToRight;
}
}
}
Các bạn chỉ cần thay thông tin database mẫu bằng truy vấn cơ sở dữ liệu để hiển thị là xong.
Thanks for watching!