博客
关于我
【TeeChart Pro ActiveX教程】(十六):TeeChart的其他调色板组件
阅读量:676 次
发布时间:2019-03-15

本文共 3482 字,大约阅读时间需要 11 分钟。

使用附加的TeeChart控件

TeeChart for.Net包含几个可以添加到项目中的附加控件,以增强Charting应用程序的运行时功能。

Teechart

选择和插入组件

将.e组件的TeeChart添加到Visual Studio .Net ToolBox时,也会自动添加其他控件。

将组件与TChart相关联

您可以使用Chart属性将Commander和其他非Chart组件与TChart相关联。

[C#]

commander1.Chart = tChart1;

[VB.Net]

Commander1.Chart = TChart1

ButtonColor

ButtonColor显示颜色编辑器,可以与TeeChart对象的Color属性关联,以修改其颜色和透明度。

[C#]

private void Form1_Load(object sender, System.EventArgs e) {         tChart1.Aspect.View3D = false;         line1.FillSampleValues(20);         colorBand1.Axis = tChart1.Axes.Left;         colorBand1.Start = line1.YValues.Maximum * 0.8;         colorBand1.End = line1.YValues.Minimum * 1.2;         buttonPen1.Pen = colorBand1.Pen; } private void buttonColor1_Click(object sender, System.EventArgs e) {         colorBand1.Color = buttonColor1.Color; }

[VB.Net]

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         TChart1.Aspect.View3D = False         Line1.FillSampleValues(20)         ColorBand1.Axis = TChart1.Axes.Left         ColorBand1.Start = Line1.YValues.Maximum * 0.8         ColorBand1.End = Line1.YValues.Minimum * 1.2         ButtonPen1.Pen = ColorBand1.Pen End Sub          Private Sub ButtonColor1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ButtonColor1.Click         ColorBand1.Color = ButtonColor1.Color End Sub

ButtonPen

ButtonPen显示边框编辑器,可以与TeeChart对象的Pen属性关联,以修改其可见性,颜色,结尾,破折号样式,宽度,样式和透明度。

[C#]

private void Form1_Load(object sender, System.EventArgs e) {         tChart1.Aspect.View3D = false;         line1.FillSampleValues(20);         colorBand1.Axis = tChart1.Axes.Left;         colorBand1.Start = line1.YValues.Maximum * 0.8;         colorBand1.End = line1.YValues.Minimum * 1.2;         buttonPen1.Pen = colorBand1.Pen; }  private void buttonColor1_Click(object sender, System.EventArgs e) {         colorBand1.Color = buttonColor1.Color; }

[VB.Net]

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         TChart1.Aspect.View3D = False         Line1.FillSampleValues(20)         ColorBand1.Axis = TChart1.Axes.Left         ColorBand1.Start = Line1.YValues.Maximum * 0.8         ColorBand1.End = Line1.YValues.Minimum * 1.2         ButtonPen1.Pen = ColorBand1.Pen End Sub          Private Sub ButtonColor1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ButtonColor1.Click         ColorBand1.Color = ButtonColor1.Color End Sub

TeeListBox

ChartListBox在运行时显示图表中的Series列表。ChartListBox可用于为用户提供有限的自定义和显示/隐藏图表系列。

Commander

Commander栏允许在运行时向用户提供导航和参数更改控制(通过TeeChart编辑器)。选择导航按钮并按下鼠标左键,拖动图表面板以移动图表。

编辑器

[C#]

private void Form1_Load(object sender, System.EventArgs e) {         editor1.Chart = tChart1;         line1.FillSampleValues(20); }  private void button1_Click(object sender, System.EventArgs e) {         editor1.DefaultTab = Steema.TeeChart.Editors.ChartEditorTabs.Legend;         editor1.Title = "My Application Title";         editor1.ShowModal(); }

[VB.Net]

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         Editor1.Chart = TChart1         Line1.FillSampleValues(20) End Sub          Private Sub ButtonColor1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ButtonColor1.Click         Editor1.DefaultTab = Steema.TeeChart.Editors.ChartEditorTabs.Legend         Editor1.Title = "My Application Title"         Editor1.ShowModal() End Sub

GalleryPanel

GalleryPanel显示可自定义的TeeChart系列图库。

转载地址:http://dbbqz.baihongyu.com/

你可能感兴趣的文章
mudbox卸载/完美解决安装失败/如何彻底卸载清除干净mudbox各种残留注册表和文件的方法...
查看>>
mysql 1264_关于mysql 出现 1264 Out of range value for column 错误的解决办法
查看>>
mysql 1593_Linux高可用(HA)之MySQL主从复制中出现1593错误码的低级错误
查看>>
mysql 5.6 修改端口_mysql5.6.24怎么修改端口号
查看>>
MySQL 8.0 恢复孤立文件每表ibd文件
查看>>
MySQL 8.0开始Group by不再排序
查看>>
mysql ansi nulls_SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON 什么意思
查看>>
multi swiper bug solution
查看>>
MySQL Binlog 日志监听与 Spring 集成实战
查看>>
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
mysql client library_MySQL数据库之zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法...
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>