網(wǎng)站首頁 編程語言 正文
本文實(shí)例為大家分享了C#實(shí)現(xiàn)chart控件動(dòng)態(tài)曲線繪制的具體代碼,供大家參考,具體內(nèi)容如下
思想
實(shí)驗(yàn)室要做一個(gè)動(dòng)態(tài)曲線繪制,網(wǎng)上方法很多,但是缺乏完整代碼和效果圖的整合,往往總是缺少其一,因此整理如下,方便大家編程,節(jié)約時(shí)間。
思路:新建一個(gè)隊(duì)列,利用timer控件,動(dòng)態(tài)的往隊(duì)列中加入數(shù)據(jù),每次觸發(fā)事件,就相當(dāng)于將隊(duì)列中的值全部重新畫一遍。
我的目的是做四個(gè)點(diǎn)的動(dòng)態(tài)監(jiān)測,所以代碼重復(fù)了四次,其實(shí)應(yīng)該用4個(gè)線程來做,思路就顯得較為清晰了,這也是可以改進(jìn)的地方。
public partial class 界面_Xtratabcontrol版本_ : Form ? ? { ? ? ? ? private Queue<double> dataQueue1 = new Queue<double>(100); //30個(gè)就清空一次 ? ? ? ? private Queue<double> dataQueue2 = new Queue<double>(100); //30個(gè)就清空一次 ? ? ? ? private Queue<double> dataQueue3 = new Queue<double>(100); //30個(gè)就清空一次 ? ? ? ? private Queue<double> dataQueue4 = new Queue<double>(100); //30個(gè)就清空一次 ? ? ? ? private int stress1 = 0;//設(shè)置一個(gè)壓力值全局變量 ? ? ? ? private int stress2 = 0;//設(shè)置一個(gè)壓力值全局變量 ? ? ? ? private int stress3 = 0;//設(shè)置一個(gè)壓力值全局變量 ? ? ? ? private int stress4 = 0;//設(shè)置一個(gè)壓力值全局變量 ? ? ? ? string monthNow = ""; ? ? ? ? string monthNext = ""; ? ? ? ? string currentTime = ""; ? ? ? ? bool isRefresh = false; ? ? ? ? public 界面_Xtratabcontrol版本_() ? ? ? ? { ? ? ? ? ? ? InitializeComponent(); ? ? ? ? ? ? dataGridView1.AutoGenerateColumns = false; //設(shè)置不自動(dòng)顯示數(shù)據(jù)庫中未綁定的列 ? ? ? ? ? ? //設(shè)置隔行背景色 ? ? ? ? ? ? this.dataGridView1.RowsDefaultCellStyle.BackColor = Color.Bisque; ? ? ? ? ? ? this.dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.Beige; ? ? ? ? } ? ? ? ? private void btnInit_Click(object sender, EventArgs e) ? ? ? ? { ? ? ? ? ? ? InitChart1(); ? ? ? ? ? ? InitChart2(); ? ? ? ? ? ? InitChart3(); ? ? ? ? ? ? InitChart4(); ? ? ? ? } ? ? ? ? private void btnStart_Click(object sender, EventArgs e) ? ? ? ? { ? ? ? ? ? ? this.timer1.Start(); ? ? ? ? } ? ? ? ? private void btnStop_Click(object sender, EventArgs e) ? ? ? ? { ? ? ? ? ? ? this.timer1.Stop(); ? ? ? ? } ? ? ? ? private void timer1_Tick(object sender, EventArgs e) ? ? ? ? { ? ? ? ? ? ? try ? ? ? ? ? ? { ? ? ? ? ? ? ? ? UpdateDate(); //根據(jù)當(dāng)前時(shí)間取下一個(gè)數(shù)據(jù),同時(shí)給month賦值 ? ? ? ? ? ? ? ? dataQueue1.Enqueue(stress1); //就是這,不斷往里面加數(shù)據(jù)。 ? ? ? ? ? ? ? ? dataQueue2.Enqueue(stress2); ? ? ? ? ? ? ? ? dataQueue3.Enqueue(stress3); ? ? ? ? ? ? ? ? dataQueue4.Enqueue(stress4); ? ? ? ? ? ? ? ? if (isRefresh) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? //刷新界面 ? ? ? ? ? ? ? ? ? ? isRefresh = false; ? ? ? ? ? ? ? ? ? ? InitChart1(); ? ? ? ? ? ? ? ? ? ? InitChart2(); ? ? ? ? ? ? ? ? ? ? InitChart3(); ? ? ? ? ? ? ? ? ? ? InitChart4(); ? ? ? ? ? ? ? ? ? ? dataQueue1.Enqueue(stress1); ? ? ? ? ? ? ? ? ? ? dataQueue2.Enqueue(stress2); ? ? ? ? ? ? ? ? ? ? dataQueue3.Enqueue(stress3); ? ? ? ? ? ? ? ? ? ? dataQueue4.Enqueue(stress4); ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? this.chart1.Series[0].Points.Clear(); ? ? ? ? ? ? ? ? this.chart2.Series[0].Points.Clear(); ? ? ? ? ? ? ? ? this.chart3.Series[0].Points.Clear(); ? ? ? ? ? ? ? ? this.chart4.Series[0].Points.Clear(); ? ? ? ? ? ? ? ? for (int i = 0; i < dataQueue1.Count; i++) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? this.chart1.Series[0].Points.AddXY((i + 1), dataQueue1.ElementAt(i)); 相當(dāng)于每次都是重新畫一遍 ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? for (int i = 0; i < dataQueue2.Count; i++) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? this.chart2.Series[0].Points.AddXY((i + 1), dataQueue2.ElementAt(i)); 相當(dāng)于每次都是重新畫一遍 ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? for (int i = 0; i < dataQueue3.Count; i++) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? this.chart3.Series[0].Points.AddXY((i + 1), dataQueue3.ElementAt(i)); 相當(dāng)于每次都是重新畫一遍 ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? for (int i = 0; i < dataQueue4.Count; i++) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? this.chart4.Series[0].Points.AddXY((i + 1), dataQueue4.ElementAt(i)); 相當(dāng)于每次都是重新畫一遍 ? ? ? ? ? ? ? ? } ? ? ? ? ? ? } ? ? ? ? ? ? catch (Exception ex) ? ? ? ? ? ? { ? ? ? ? ? ? ? ? MessageBox.Show(ex.Message); ? ? ? ? ? ? } ? ? ? ? } ? ? ? ? private void InitChart1() ? ? ? ? { ? ? ? ? ? ? try ? ? ? ? ? ? { ? ? ? ? ? ? ? ? //定義圖表區(qū)域 ? ? ? ? ? ? ? ? this.chart1.ChartAreas.Clear(); ? ? ? ? ? ? ? ? ChartArea chartArea1 = new ChartArea("C1"); ? ? ? ? ? ? ? ? this.chart1.ChartAreas.Add(chartArea1); ? ? ? ? ? ? ? ? //this.chart1.Dock = DockStyle.Fill; ? ? ? ? ? ? ? ? //定義存儲(chǔ)和顯示點(diǎn)的容器 ? ? ? ? ? ? ? ? this.chart1.Series.Clear(); ? ? ? ? ? ? ? ? Series series1 = new Series("S1"); ? ? ? ? ? ? ? ? series1.ChartArea = "C1"; ? ? ? ? ? ? ? ? this.chart1.Series.Add(series1); ? ? ? ? ? ? ? ? //設(shè)置圖表顯示樣式 ? ? ? ? ? ? ? ? this.chart1.ChartAreas[0].AxisY.Minimum = 30000; ? ? ? ? ? ? ? ? this.chart1.ChartAreas[0].AxisY.Maximum = 50000; ? ? ? ? ? ? ? ? this.chart1.ChartAreas[0].AxisX.Minimum = 1; ? ? ? ? ? ? ? ? this.chart1.ChartAreas[0].AxisX.Maximum = 31; ? ? ? ? ? ? ? ? this.chart1.ChartAreas[0].AxisX.Interval = 1; ? ? ? ? ? ? ? ? this.chart1.ChartAreas[0].AxisX.MajorGrid.LineColor = System.Drawing.Color.Silver; ? ? ? ? ? ? ? ? this.chart1.ChartAreas[0].AxisY.MajorGrid.LineColor = System.Drawing.Color.Silver; ? ? ? ? ? ? ? ? //設(shè)置標(biāo)題 ? ? ? ? ? ? ? ? this.chart1.Titles.Clear(); ? ? ? ? ? ? ? ? this.chart1.Titles.Add("S01"); ? ? ? ? ? ? ? ? this.chart1.Titles[0].Text = "1號(hào)監(jiān)測點(diǎn)"; ? ? ? ? ? ? ? ? this.chart1.Titles[0].ForeColor = Color.RoyalBlue; ? ? ? ? ? ? ? ? this.chart1.Titles[0].Font = new System.Drawing.Font("Microsoft Sans Serif", 12F); ? ? ? ? ? ? ? ? //設(shè)置圖表顯示樣式 ? ? ? ? ? ? ? ? this.chart1.Series[0].Color = Color.Red; ? ? ? ? ? ? ? ? if (rb1.Checked) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? //this.chart1.Titles[0].Text = string.Format("動(dòng)態(tài) {0} 顯示", rb1.Text); ? ? ? ? ? ? ? ? ? ? this.chart1.Titles[0].Text = string.Format("1號(hào)監(jiān)測點(diǎn)"); ? ? ? ? ? ? ? ? ? ? this.chart1.Series[0].ChartType = SeriesChartType.Line; ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? if (rb2.Checked) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? this.chart1.Titles[0].Text = string.Format("動(dòng)態(tài) {0} 顯示", rb1.Text); ? ? ? ? ? ? ? ? ? ? this.chart1.Series[0].ChartType = SeriesChartType.Spline; ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? this.chart1.Series[0].Points.Clear(); ? ? ? ? ? ? ? ? //DBEngine.ConnectDB("orcl", "dt", "6312"); ? ? ? ? ? ? ? ? dataQueue1.Clear();//清空隊(duì)列中所有數(shù)據(jù) ? ? ? ? ? ? } ? ? ? ? ? ? catch (Exception ex) ? ? ? ? ? ? { ? ? ? ? ? ? } ? ? ? ? } ? ? ? ? private void InitChart2() ? ? ? ? { ? ? ? ? ? ? try ? ? ? ? ? ? { ? ? ? ? ? ? ? ? //定義圖表區(qū)域 ? ? ? ? ? ? ? ? this.chart2.ChartAreas.Clear(); ? ? ? ? ? ? ? ? ChartArea chartArea2 = new ChartArea("C2"); ? ? ? ? ? ? ? ? this.chart2.ChartAreas.Add(chartArea2); ? ? ? ? ? ? ? ? //this.chart1.Dock = DockStyle.Fill; ? ? ? ? ? ? ? ? //定義存儲(chǔ)和顯示點(diǎn)的容器 ? ? ? ? ? ? ? ? this.chart2.Series.Clear(); ? ? ? ? ? ? ? ? Series series2 = new Series("S2"); ? ? ? ? ? ? ? ? series2.ChartArea = "C2"; ? ? ? ? ? ? ? ? this.chart2.Series.Add(series2); ? ? ? ? ? ? ? ? //設(shè)置圖表顯示樣式 ? ? ? ? ? ? ? ? this.chart2.ChartAreas[0].AxisY.Minimum = 30000; ? ? ? ? ? ? ? ? this.chart2.ChartAreas[0].AxisY.Maximum = 50000; ? ? ? ? ? ? ? ? this.chart2.ChartAreas[0].AxisX.Minimum = 1; ? ? ? ? ? ? ? ? this.chart2.ChartAreas[0].AxisX.Maximum = 31; ? ? ? ? ? ? ? ? this.chart2.ChartAreas[0].AxisX.Interval = 1; ? ? ? ? ? ? ? ? this.chart2.ChartAreas[0].AxisX.MajorGrid.LineColor = System.Drawing.Color.Silver; ? ? ? ? ? ? ? ? this.chart2.ChartAreas[0].AxisY.MajorGrid.LineColor = System.Drawing.Color.Silver; ? ? ? ? ? ? ? ? //設(shè)置標(biāo)題 ? ? ? ? ? ? ? ? this.chart2.Titles.Clear(); ? ? ? ? ? ? ? ? this.chart2.Titles.Add("S02"); ? ? ? ? ? ? ? ? this.chart2.Titles[0].Text = "動(dòng)態(tài)折線圖顯示"; ? ? ? ? ? ? ? ? this.chart2.Titles[0].ForeColor = Color.RoyalBlue; ? ? ? ? ? ? ? ? this.chart2.Titles[0].Font = new System.Drawing.Font("Microsoft Sans Serif", 12F); //標(biāo)題字體 ? ? ? ? ? ? ? ? //設(shè)置圖表顯示樣式 ? ? ? ? ? ? ? ? this.chart2.Series[0].Color = Color.Red; ? ? ? ? ? ? ? ? if (rb1.Checked) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? //this.chart2.Titles[0].Text = string.Format("動(dòng)態(tài) {0} 顯示", rb1.Text); ? ? ? ? ? ? ? ? ? ? this.chart2.Titles[0].Text = string.Format("2號(hào)監(jiān)測點(diǎn)"); ? ? ? ? ? ? ? ? ? ? this.chart2.Series[0].ChartType = SeriesChartType.Line; ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? if (rb2.Checked) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? this.chart2.Titles[0].Text = string.Format("動(dòng)態(tài) {0} 顯示", rb1.Text); ? ? ? ? ? ? ? ? ? ? this.chart2.Series[0].ChartType = SeriesChartType.Spline; ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? this.chart2.Series[0].Points.Clear(); ? ? ? ? ? ? ? ? //DBEngine.ConnectDB("orcl", "dt", "6312"); ? ? ? ? ? ? ? ? dataQueue2.Clear();//清空隊(duì)列中所有數(shù)據(jù) ? ? ? ? ? ? } ? ? ? ? ? ? catch (Exception ex) ? ? ? ? ? ? { ? ? ? ? ? ? } ? ? ? ? } ? ? ? ? private void InitChart3() ? ? ? ? { ? ? ? ? ? ? try ? ? ? ? ? ? { ? ? ? ? ? ? ? ? //定義圖表區(qū)域 ? ? ? ? ? ? ? ? this.chart3.ChartAreas.Clear(); ? ? ? ? ? ? ? ? ChartArea chartArea3 = new ChartArea("C3"); ? ? ? ? ? ? ? ? this.chart3.ChartAreas.Add(chartArea3); ? ? ? ? ? ? ? ? //this.chart1.Dock = DockStyle.Fill; ? ? ? ? ? ? ? ? //定義存儲(chǔ)和顯示點(diǎn)的容器 ? ? ? ? ? ? ? ? this.chart3.Series.Clear(); ? ? ? ? ? ? ? ? Series series3 = new Series("S3"); ? ? ? ? ? ? ? ? series3.ChartArea = "C3"; ? ? ? ? ? ? ? ? this.chart3.Series.Add(series3); ? ? ? ? ? ? ? ? //設(shè)置圖表顯示樣式 ? ? ? ? ? ? ? ? this.chart3.ChartAreas[0].AxisY.Minimum = 30000; ? ? ? ? ? ? ? ? this.chart3.ChartAreas[0].AxisY.Maximum = 50000; ? ? ? ? ? ? ? ? this.chart3.ChartAreas[0].AxisX.Minimum = 1; ? ? ? ? ? ? ? ? this.chart3.ChartAreas[0].AxisX.Maximum = 31; ? ? ? ? ? ? ? ? this.chart3.ChartAreas[0].AxisX.Interval = 1; ? ? ? ? ? ? ? ? this.chart3.ChartAreas[0].AxisX.MajorGrid.LineColor = System.Drawing.Color.Silver; ? ? ? ? ? ? ? ? this.chart3.ChartAreas[0].AxisY.MajorGrid.LineColor = System.Drawing.Color.Silver; ? ? ? ? ? ? ? ? //設(shè)置標(biāo)題 ? ? ? ? ? ? ? ? this.chart3.Titles.Clear(); ? ? ? ? ? ? ? ? this.chart3.Titles.Add("S03"); ? ? ? ? ? ? ? ? this.chart3.Titles[0].Text = "動(dòng)態(tài)折線圖顯示"; ? ? ? ? ? ? ? ? this.chart3.Titles[0].ForeColor = Color.RoyalBlue; ? ? ? ? ? ? ? ? this.chart3.Titles[0].Font = new System.Drawing.Font("Microsoft Sans Serif", 12F); //標(biāo)題字體 ? ? ? ? ? ? ? ? //設(shè)置圖表顯示樣式 ? ? ? ? ? ? ? ? this.chart3.Series[0].Color = Color.Red; ? ? ? ? ? ? ? ? if (rb1.Checked) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? //this.chart3.Titles[0].Text = string.Format("動(dòng)態(tài) {0} 顯示", rb1.Text); ? ? ? ? ? ? ? ? ? ? this.chart3.Titles[0].Text = string.Format("3號(hào)監(jiān)測點(diǎn)"); ? ? ? ? ? ? ? ? ? ? this.chart3.Series[0].ChartType = SeriesChartType.Line; ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? if (rb2.Checked) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? this.chart3.Titles[0].Text = string.Format("動(dòng)態(tài) {0} 顯示", rb1.Text); ? ? ? ? ? ? ? ? ? ? this.chart3.Series[0].ChartType = SeriesChartType.Spline; ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? this.chart3.Series[0].Points.Clear(); ? ? ? ? ? ? ? ? //DBEngine.ConnectDB("orcl", "dt", "6312"); ? ? ? ? ? ? ? ? dataQueue3.Clear();//清空隊(duì)列中所有數(shù)據(jù) ? ? ? ? ? ? } ? ? ? ? ? ? catch (Exception ex) ? ? ? ? ? ? { ? ? ? ? ? ? } ? ? ? ? } ? ? ? ? private void InitChart4() ? ? ? ? { ? ? ? ? ? ? try ? ? ? ? ? ? { ? ? ? ? ? ? ? ? //定義圖表區(qū)域 ? ? ? ? ? ? ? ? this.chart4.ChartAreas.Clear(); ? ? ? ? ? ? ? ? ChartArea chartArea4 = new ChartArea("C4"); ? ? ? ? ? ? ? ? this.chart4.ChartAreas.Add(chartArea4); ? ? ? ? ? ? ? ? //this.chart1.Dock = DockStyle.Fill; ? ? ? ? ? ? ? ? //定義存儲(chǔ)和顯示點(diǎn)的容器 ? ? ? ? ? ? ? ? this.chart4.Series.Clear(); ? ? ? ? ? ? ? ? Series series4 = new Series("S4"); ? ? ? ? ? ? ? ? series4.ChartArea = "C4"; ? ? ? ? ? ? ? ? this.chart4.Series.Add(series4); ? ? ? ? ? ? ? ? //設(shè)置圖表顯示樣式 ? ? ? ? ? ? ? ? this.chart4.ChartAreas[0].AxisY.Minimum = 30000; ? ? ? ? ? ? ? ? this.chart4.ChartAreas[0].AxisY.Maximum = 50000; ? ? ? ? ? ? ? ? this.chart4.ChartAreas[0].AxisX.Minimum = 1; ? ? ? ? ? ? ? ? this.chart4.ChartAreas[0].AxisX.Maximum = 31; ? ? ? ? ? ? ? ? this.chart4.ChartAreas[0].AxisX.Interval = 1; ? ? ? ? ? ? ? ? this.chart4.ChartAreas[0].AxisX.MajorGrid.LineColor = System.Drawing.Color.Silver; ? ? ? ? ? ? ? ? this.chart4.ChartAreas[0].AxisY.MajorGrid.LineColor = System.Drawing.Color.Silver; ? ? ? ? ? ? ? ? //設(shè)置標(biāo)題 ? ? ? ? ? ? ? ? this.chart4.Titles.Clear(); ? ? ? ? ? ? ? ? this.chart4.Titles.Add("S04"); ? ? ? ? ? ? ? ? this.chart4.Titles[0].Text = "動(dòng)態(tài)折線圖顯示"; ? ? ? ? ? ? ? ? this.chart4.Titles[0].ForeColor = Color.RoyalBlue; ? ? ? ? ? ? ? ? this.chart4.Titles[0].Font = new System.Drawing.Font("Microsoft Sans Serif", 12F); //標(biāo)題字體 ? ? ? ? ? ? ? ? //設(shè)置圖表顯示樣式 ? ? ? ? ? ? ? ? this.chart4.Series[0].Color = Color.Red; ? ? ? ? ? ? ? ? if (rb1.Checked) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? //this.chart4.Titles[0].Text = string.Format("動(dòng)態(tài) {0} 顯示", rb1.Text); ? ? ? ? ? ? ? ? ? ? this.chart4.Titles[0].Text = string.Format("4號(hào)監(jiān)測點(diǎn)"); ? ? ? ? ? ? ? ? ? ? this.chart4.Series[0].ChartType = SeriesChartType.Line; ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? if (rb2.Checked) ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? this.chart4.Titles[0].Text = string.Format("動(dòng)態(tài) {0} 顯示", rb1.Text); ? ? ? ? ? ? ? ? ? ? this.chart4.Series[0].ChartType = SeriesChartType.Spline; ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? this.chart4.Series[0].Points.Clear(); ? ? ? ? ? ? ? ? //DBEngine.ConnectDB("orcl", "dt", "6312"); ? ? ? ? ? ? ? ? dataQueue4.Clear();//清空隊(duì)列中所有數(shù)據(jù) ? ? ? ? ? ? } ? ? ? ? ? ? catch (Exception ex) ? ? ? ? ? ? { ? ? ? ? ? ? } ? ? ? ? } ? ? ? ? private void UpdateDate() ? ? ? ? { ? ? ? ? ? ? //1 2 3 4號(hào)點(diǎn)同時(shí)更新 ? ? ? ? ? ? try ? ? ? ? ? ? { ? ? ? ? ? ? ? ? //獲取當(dāng)前時(shí)間的batch值,將batch+1的時(shí)間值提取顯示。 ? ? ? ? ? ? ? ? string selectsql = string.Format("select * from stressinfo where operatetime=to_date('{0}','yyyy-mm-dd')", dtp1.Value.ToShortDateString()); ? ? ? ? ? ? ? ? DataTable dtDate = new DataTable(); ? ? ? ? ? ? ? ? dtDate = DBEngine.GetDataTableBySql(selectsql); ? ? ? ? ? ? ? ? if (dtDate.Rows.Count > 0) //4條 ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? string[] getmonthNow = dtp1.Value.ToShortDateString().Split('/'); //有的電腦是'-' ? ? ? ? ? ? ? ? ? ? monthNow = getmonthNow[1]; ? ? ? ? ? ? ? ? ? ? int currentBatch = DBEngine.ObjToInt(dtDate.Rows[0]["batchnum"]); ? ? ? ? ? ? ? ? ? ? //int currentNode = DBEngine.ObjToInt(dtDate.Rows[0]["NODE"]); //當(dāng)前節(jié)點(diǎn)和當(dāng)前批次確定唯一記錄 ? ? ? ? ? ? ? ? ? ? currentBatch++; ? ? ? ? ? ? ? ? ? ? //獲取下一個(gè)顯示的時(shí)間值以及應(yīng)力值 ? ? ? ? ? ? ? ? ? ? string nextsql1 = string.Format("select * from stressinfo where batchnum='{0}' and node=1", currentBatch); ? ? ? ? ? ? ? ? ? ? DataTable dtNext1 = new DataTable(); ? ? ? ? ? ? ? ? ? ? dtNext1 = DBEngine.GetDataTableBySql(nextsql1);//取得了下一個(gè)批次的所有應(yīng)力監(jiān)測點(diǎn)數(shù)據(jù)。 ? ? ? ? ? ? ? ? ? ? if (dtNext1.Rows.Count > 0) ? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? ? stress1 = DBEngine.ObjToInt(dtNext1.Rows[0]["CURRENTSTRESS"]); ? ? ? ? ? ? ? ? ? ? ? ? dtp1.Value = DBEngine.ObjToDateTime(dtNext1.Rows[0]["OPERATETIME"]); //日期顯示(之后應(yīng)該還有各點(diǎn)應(yīng)力的提取) ? ? ? ? ? ? ? ? ? ? ? ? currentTime = dtp1.Value.ToShortDateString(); ? ? ? ? ? ? ? ? ? ? ? ? string[] datetime = currentTime.Split('/'); ? ? ? ? ? ? ? ? ? ? ? ? monthNext = datetime[1]; ? ? ? ? ? ? ? ? ? ? ? ? if (monthNow != monthNext) ? ? ? ? ? ? ? ? ? ? ? ? ? ? isRefresh = true; ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? else ? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? ? timer1.Stop();//數(shù)據(jù)到頭了,沒有數(shù)據(jù)了,batch+1找不到了 ? ? ? ? ? ? ? ? ? ? ? ? btnStop.Focus(); //停止鍵焦點(diǎn)顯示 ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? ///第二個(gè)點(diǎn),不用更新數(shù)據(jù) ? ? ? ? ? ? ? ? ? ? string nextsql2 = string.Format("select * from stressinfo where batchnum='{0}' and node=2", currentBatch); ? ? ? ? ? ? ? ? ? ? DataTable dtNext2 = new DataTable(); ? ? ? ? ? ? ? ? ? ? dtNext2 = DBEngine.GetDataTableBySql(nextsql2);//取得了下一個(gè)批次的所有應(yīng)力監(jiān)測點(diǎn)數(shù)據(jù)。 ? ? ? ? ? ? ? ? ? ? if (dtNext2.Rows.Count > 0) ? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? ? stress2 = DBEngine.ObjToInt(dtNext2.Rows[0]["CURRENTSTRESS"]); ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? else ? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? ? timer1.Stop();//數(shù)據(jù)到頭了,沒有數(shù)據(jù)了,batch+1找不到了 ? ? ? ? ? ? ? ? ? ? ? ? btnStop.Focus(); //停止鍵焦點(diǎn)顯示 ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? ///第三個(gè)點(diǎn),不用更新數(shù)據(jù) ? ? ? ? ? ? ? ? ? ? string nextsql3 = string.Format("select * from stressinfo where batchnum='{0}' and node=3", currentBatch); ? ? ? ? ? ? ? ? ? ? DataTable dtNext3 = new DataTable(); ? ? ? ? ? ? ? ? ? ? dtNext3 = DBEngine.GetDataTableBySql(nextsql3);//取得了下一個(gè)批次的所有應(yīng)力監(jiān)測點(diǎn)數(shù)據(jù)。 ? ? ? ? ? ? ? ? ? ? if (dtNext3.Rows.Count > 0) ? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? ? stress3 = DBEngine.ObjToInt(dtNext3.Rows[0]["CURRENTSTRESS"]); ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? else ? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? ? timer1.Stop();//數(shù)據(jù)到頭了,沒有數(shù)據(jù)了,batch+1找不到了 ? ? ? ? ? ? ? ? ? ? ? ? btnStop.Focus(); //停止鍵焦點(diǎn)顯示 ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? ///第四個(gè)點(diǎn),不用更新數(shù)據(jù) ? ? ? ? ? ? ? ? ? ? string nextsql4 = string.Format("select * from stressinfo where batchnum='{0}' and node=4", currentBatch); ? ? ? ? ? ? ? ? ? ? DataTable dtNext4 = new DataTable(); ? ? ? ? ? ? ? ? ? ? dtNext4 = DBEngine.GetDataTableBySql(nextsql4);//取得了下一個(gè)批次的所有應(yīng)力監(jiān)測點(diǎn)數(shù)據(jù)。 ? ? ? ? ? ? ? ? ? ? if (dtNext4.Rows.Count > 0) ? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? ? stress4 = DBEngine.ObjToInt(dtNext4.Rows[0]["CURRENTSTRESS"]); ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? ? ? else ? ? ? ? ? ? ? ? ? ? { ? ? ? ? ? ? ? ? ? ? ? ? timer1.Stop();//數(shù)據(jù)到頭了,沒有數(shù)據(jù)了,batch+1找不到了 ? ? ? ? ? ? ? ? ? ? ? ? btnStop.Focus(); //停止鍵焦點(diǎn)顯示 ? ? ? ? ? ? ? ? ? ? } ? ? ? ? ? ? ? ? } ? ? ? ? ? ? } ? ? ? ? ? ? catch ? ? ? ? ? ? { ? ? ? ? ? ? } ? ? ? ? } }
因?yàn)樯婕暗揭恍I(yè)務(wù),有些代碼沒有粘,數(shù)據(jù)是和Oracle數(shù)據(jù)庫進(jìn)行交互的,類文件名DBEngine.cs,大家自己做的時(shí)候別忘連接數(shù)據(jù)庫,最終效果圖
這個(gè)圖還有優(yōu)化的控件,我后期要做一下,還是不太好看。
可以實(shí)現(xiàn)曲線隨日期動(dòng)態(tài)增加,想到了就不難,我覺得思路挺好的,就記錄一下。
原文鏈接:https://blog.csdn.net/a5pansq/article/details/89365834
相關(guān)推薦
- 2022-12-29 React動(dòng)態(tài)更改html標(biāo)簽的實(shí)現(xiàn)方式_React
- 2022-10-29 利用platform編寫驅(qū)動(dòng)控制樹莓派4B io口
- 2023-06-13 Python的加密模塊之hashlib?與?base64詳解及常用加密方法_python
- 2023-05-29 scipy稀疏數(shù)組coo_array的實(shí)現(xiàn)_python
- 2023-03-29 goland遠(yuǎn)程調(diào)試k8s上容器的實(shí)現(xiàn)_Golang
- 2022-04-06 C語言中斐波那契數(shù)列的三種實(shí)現(xiàn)方式(遞歸、循環(huán)、矩陣)_C 語言
- 2022-06-12 PostgreSQL數(shù)據(jù)庫視圖及子查詢使用操作_PostgreSQL
- 2022-03-16 使用Lvs+Nginx集群搭建高并發(fā)架構(gòu)的實(shí)現(xiàn)示例_nginx
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細(xì)win安裝深度學(xué)習(xí)環(huán)境2025年最新版(
- Linux 中運(yùn)行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲(chǔ)小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎(chǔ)操作-- 運(yùn)算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認(rèn)證信息的處理
- Spring Security之認(rèn)證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權(quán)
- redisson分布式鎖中waittime的設(shè)
- maven:解決release錯(cuò)誤:Artif
- restTemplate使用總結(jié)
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實(shí)現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務(wù)發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結(jié)構(gòu)-簡單動(dòng)態(tài)字符串(SD
- arthas操作spring被代理目標(biāo)對(duì)象命令
- Spring中的單例模式應(yīng)用詳解
- 聊聊消息隊(duì)列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠(yuǎn)程分支