如何设置TeeChart的X坐标轴上每个点的Lable?

如何设置TeeChart的X坐标轴上每个点的Lable?,第1张



Random rnd = new Random()

DateTime today = DateTime.Today

TimeSpan oneHour = TimeSpan.FromHours(1)

Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line()

line1.XValues.DateTime = true

for (int i = 0i <= 24++i)

{

line1.Add(today, rnd.Next(100), Color.Red)

today += oneHour

}

tChart1.Series.Add(line1)//添加数据序列

tChart1.Axes.Bottom.Labels.DateTimeFormat = "MM-dd HH:mm:ss"

tChart1.Axes.Bottom.Labels.MultiLine = true

Steema.TeeChart.Axis bottomAxis = tChart1.Axes.Bottom

bottomAxis.Increment = Steema.TeeChart.Utils.GetDateTimeStep(Steema.TeeChart.DateTimeSteps.OneHour)//设定增长为1小时

如果想改变echarts折线图默认颜色颜色:

用lineStyle 里的normal 添加color 用颜色选择器添加自己喜欢的颜色

2:

添加颜色又会出现新的问题你会发现legend的颜色还是默认的颜色,在legend 的同级别添加color

1、新建工程

2、设置窗体属性TransparentKey为窗体背景色

3、在窗体上添加ListView控件

4、为ListView手动添加少量 Column和Item

5、设置部分Items的背景色为白色以外的颜色

然后运行,查看效果

利用TransparentKey可以将多画面图片连续绘制到窗体上以形成动画


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11280677.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存