博客
关于我
【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/

你可能感兴趣的文章
Mysql 共享锁
查看>>
MySQL 内核深度优化
查看>>
mysql 内连接、自然连接、外连接的区别
查看>>
mysql 写入慢优化
查看>>
mysql 分组统计SQL语句
查看>>
Mysql 分页
查看>>
Mysql 分页语句 Limit原理
查看>>
MySql 创建函数 Error Code : 1418
查看>>
MySQL 创建新用户及授予权限的完整流程
查看>>
mysql 创建表,不能包含关键字values 以及 表id自增问题
查看>>
mysql 删除日志文件详解
查看>>
mysql 判断表字段是否存在,然后修改
查看>>
MySQL 到底能不能放到 Docker 里跑?
查看>>
mysql 前缀索引 命令_11 | Mysql怎么给字符串字段加索引?
查看>>
mysql 协议的退出命令包及解析
查看>>
mysql 取表中分组之后最新一条数据 分组最新数据 分组取最新数据 分组数据 获取每个分类的最新数据
查看>>
mysql 四种存储引擎
查看>>
MySQL 基础模块的面试题总结
查看>>
MySQL 备份 Xtrabackup
查看>>
mysql 多个表关联查询查询时间长的问题
查看>>