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、新建工程3、在窗体上添加ListView控件
4、为ListView手动添加少量 Column和Item
5、设置部分Items的背景色为白色以外的颜色
然后运行,查看效果
利用TransparentKey可以将多画面图片连续绘制到窗体上以形成动画
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)