永发信息网

C#ZedGraph控件实时曲线问题

答案:1  悬赏:20  手机版
解决时间 2021-02-25 18:48
  • 提问者网友:喧嚣尘世
  • 2021-02-25 03:03
C#ZedGraph控件实时曲线问题
最佳答案
  • 五星知识达人网友:平生事
  • 2021-02-25 03:51
// Build the Chart
private void CreateGraph( ZedGraphControl zgc )
{
 // get a reference to the GraphPane
 GraphPane myPane = zgc.GraphPane;
 // Set the Titles
 myPane.Title.Text = "My Test Graph";
 myPane.XAxis.Title.Text = "My X Axis";
 myPane.YAxis.Title.Text = "My Y Axis";
 // Make up some data arrays based on the Sine function
 double x, y1, y2;
 PointPairList list1 = new PointPairList();
 PointPairList list2 = new PointPairList();
 for ( int i = 0; i < 36; i++ )
 {
  x = (double)i + 5;
  y1 = 1.5 + Math.Sin( (double)i * 0.2 );
  y2 = 3.0 * ( 1.5 + Math.Sin( (double)i * 0.2 ) );
  list1.Add( x, y1 );
  list2.Add( x, y2 );
 }
 // Generate a red curve with diamond
 // symbols, and "Porsche" in the legend
 LineItem myCurve = myPane.AddCurve( "Porsche",
  list1, Color.Red, SymbolType.Diamond );
 // Generate a blue curve with circle
 // symbols, and "Piper" in the legend
 LineItem myCurve2 = myPane.AddCurve( "Piper",
  list2, Color.Blue, SymbolType.Circle );
 // Tell ZedGraph to refigure the
 // axes since the data have changed
 zgc.AxisChange();
}代码粘贴就能用 你看下效果
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯