본문 바로가기
300x250

BAR4

DevExpress / Winform Bar 차트의 Bar의 색상을 변경합니다. 차트의 Bar의 색상을 변경합니다. using System; using System.Data; using System.Drawing; using System.Windows.Forms; using DevExpress.XtraCharts; namespace Dev_Sample { public partial class MainForm : Form { public MainForm() { InitializeComponent(); Load += mainForm_Load; } /// /// 메인폼 로드시 동작합니다. /// /// 이벤트 발생자 입니다. /// 이벤트 인자 입니다. private void mainForm_Load(object sender, EventArgs e) { ChartControl chart .. 2019. 9. 30.
DevExpress / Winform 차트에 spline, line, bar를 출력합니다. 차트에 spline, line, bar를 출력합니다. using System; using System.Data; using System.Windows.Forms; using DevExpress.XtraCharts; namespace Dev_Sample { public partial class MainForm : Form { public MainForm() { InitializeComponent(); Load += mainForm_Load; } /// /// 메인폼 로드시 동작합니다. /// /// 이벤트 발생자 입니다. /// 이벤트 인자 입니다. private void mainForm_Load(object sender, EventArgs e) { ChartControl chart = new ChartC.. 2019. 9. 29.
DevExpress / Winform Bar 차트를 생성합니다 Bar 차트를 생성합니다 using System; using System.Data; using System.Windows.Forms; using DevExpress.XtraCharts; namespace Dev_Sample { public partial class MainForm : Form { public MainForm() { InitializeComponent(); Load += mainForm_Load; } /// /// 메인폼 로드시 동작합니다. /// /// 이벤트 발생자 입니다. /// 이벤트 인자 입니다. private void mainForm_Load(object sender, EventArgs e) { ChartControl chart = new ChartControl(); chart... 2019. 9. 29.
DevExpress / Winform Bar 생성하기. Bar 생성하기 입니다. MainForm.cs 입니다. using System.Windows.Forms; using DevExpress.XtraBars; namespace WindowsFormsApp2 { /// /// 메인폼 클래스 입니다. /// public partial class MainForm : Form { // Constructor (Public) #region MainForm() - 메인폼 생성자 입니다. /// /// 메인폼 생성자 입니다. /// public MainForm() { InitializeComponent(); #region Bar를 생성합니다. BarManager barManager = new BarManager(); barManager.Form = this; barMana.. 2019. 5. 24.
300x250