본문 바로가기
300x250

DevExpress56

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 개별 차트 시리즈를 데이터에 바인딩 합니다 개별 차트 시리즈를 데이터에 바인딩하는 예제 입니다. 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.
300x250