Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. MessageBox.Show(dp.XValue + "," + dp.YValues[0]);
  2. }
  3. }
  4.  
  5. System.Windows.Forms.DataVisualization.Charting.DataPoint dp = new System.Windows.Forms.DataVisualization.Charting.DataPoint();
  6. dp.SetValueXY(d["year"] + "年" + d["month"] + "月" + d["day"] + "日", int.Parse(d["sheets"])); //XとYの値を設定
  7. dp.IsValueShownAsLabel = true;
  8. this.series2.Points.Add(dp);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement