首页 > 其他 > 详细

Run-time code to create charts:

时间:2019-03-16 20:54:42      阅读:180      评论:0      收藏:0      [点我收藏+]

 

tChart1.Series.Clear();

tChart1.Series.Add(new Steema.TeeChart.Styles.Bar());
tChart1.Series[0].Clear();
tChart1.Series[0].Add(123, "ABC", Color.Red);
tChart1.Series[0].Add( 456, "DEF", Color.Blue );
tChart1.Series[0].Add( 321, "GHI", Color.Green );

Change the bar Marks :

tChart1.Series[0].Marks.Style = smsValue ;

To show the editor dialog, use the following code:

tChart1.ShowEditor();

Run-time code to create charts:

原文:https://www.cnblogs.com/qiu18359243869/p/10544080.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!