如何将DevExpress DXChart图表控件添加到Windows窗体应用程序中?
作者:zhuhm 来源:本站原创 浏览:Loading...次 发布时间:2012-09-10 评论:0条
以下的例子展示了如何将ChartControl添加到Windows窗体应用程序中。注意图表控件可以在设计时和运行时添加到你的图表应用程序中。
设计时
默认状态下, ChartControl项被添加进VS IDE的DX.12.1:Data工具箱选项卡中。就这样,简单地拖拽相应的工具箱项目,把它放置于窗体应上就可以把图表控件加到你的项目中。
注意:当添加ChartControl时,会调用到图表向导窗口。如果你不想用到它点击“取消”,或者按照软件的步骤来定制你的图表的初始轮廓。
运行时
运行时添加一个图表控件到窗体,不要忘了把所有必需的组件添加到你项目中的参考列表中。
C#
using System.Drawing;
using System.Windows.Forms;
using DevExpress.XtraCharts;
// ...
private void OnButtonClick(object sender, System.EventArgs e) {
// Create a new Chart control.
ChartControl chart = new ChartControl();
// Set the chart's location.
chart.Location = new Point(10, 10);
// Perform any other initialization here.
// ...
// ...
// Add the chart to the Form.
this.Controls.AddRange(new Control[] {chart});
}
using System.Drawing;
using System.Windows.Forms;
using DevExpress.XtraCharts;
// ...
private void OnButtonClick(object sender, System.EventArgs e) {
// Create a new Chart control.
ChartControl chart = new ChartControl();
// Set the chart's location.
chart.Location = new Point(10, 10);
// Perform any other initialization here.
// ...
// ...
// Add the chart to the Form.
this.Controls.AddRange(new Control[] {chart});
}
VB
Imports System.Drawing
Imports System.Windows.Forms
Imports DevExpress.XtraCharts
' ...
Private Sub OnButtonClick(sender As Object, e As System.EventArgs) _
Handles Button1.Click
' Create a new Chart control.
Dim chart As New ChartControl()
' Set the chart's location.
chart.Location = New Point(10, 10)
' Perform any other initialization here.
' ...
' ...
' Add the chart to the Form.
Me.Controls.AddRange(New Control() {chart})
End Sub
Imports System.Drawing
Imports System.Windows.Forms
Imports DevExpress.XtraCharts
' ...
Private Sub OnButtonClick(sender As Object, e As System.EventArgs) _
Handles Button1.Click
' Create a new Chart control.
Dim chart As New ChartControl()
' Set the chart's location.
chart.Location = New Point(10, 10)
' Perform any other initialization here.
' ...
' ...
' Add the chart to the Form.
Me.Controls.AddRange(New Control() {chart})
End Sub
本站文章除注明转载外,均为本站原创或翻译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:DevExpress控件中文网 [http://www.devexpresscn.com/]
本文地址:http://www.devexpresscn.com/DevExpress-Resources/Documentation-228.html
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:DevExpress控件中文网 [http://www.devexpresscn.com/]
本文地址:http://www.devexpresscn.com/DevExpress-Resources/Documentation-228.html
关键字: DXChart
评论列表
暂无评论
请谈谈你的看法 请使用IE或者Firefox浏览器,暂不支持Chrome!
慧都控件网为DevExpress界面控件的中国地区唯一正式授权经销商,正版控件销售公司,授权代理商,经销商及合作伙伴。
电话:400-700-1020
023-66090381
邮箱:sales@evget.com
相关资源
- Aqua AutoFormat应用到SharePoint页面
- DXChart与透视网格控件集成例子中图例显示的问题
- WPF表格控件GridControl如何设置行高
- 定义DXGrid的打印外观
- WebChartControl指定显示类型的问题
- ASP.NET控件问题
- ASPxEditor套包问题
- ASPxGridView控件FAQ
- 中级信用环境中网站停止工作
- ASPxperience控件常见问题FAQ
- 添加ASPxNavBar控件到SharePoint 2010
- ASPxTreeList控件FAQ
- 如何序列化包含可序列化的DX控件的WPF窗体
- ASPxNavBar控件替换快速启动菜单
- ASPxPopupControl控件实现向下钻取报告
- 放大DXGrid单元格中的图像
- 如何修改DXGrid for WPF单元格的背景色?
- DXCharts创建二维面积图
- 通过辅助复选框列实现多行选择
- DXCharts入门手册