一个非常好用的MFC 曲线控件 在CDialog.h中定义控件 CChartCtrl m_cChartFx; 在CDialog.cpp中 绑定控件 DDX_Control(pDX, IDC_STATIC_FY, m_cChartFy); 初始化控件 CChartAxis *pAxis = NULL; pAxis = m_cChartFx.CreateStandardAxis(CChartCtrl::BottomAxis); pAxis->SetAutomatic(true); pAxis = m_cChartFx.CreateStandardAxis(CChartCtrl::LeftAxis); pAxis->SetAutomatic(true); m_cChartFx.GetTitle()->AddString(L"value_FX "); m_cChartFx.GetLeftAxis()->GetLabel()->SetText(L"单位:N"); m_cChartFx.GetBottomAxis()->GetLabel()->SetText(L"单位时间"); m_cChartFx.EnableRefresh(false); m_cChartFx.RemoveAllSeries();//先清空 pLineSerie1Fx = m_cChartFx.CreateLineSerie(); //创建一个曲线 m_cChartFx.EnableRefresh(true); m_cChartFx.SetBackColor(RGB(200, 200, 200)); pLineSerie1Fx->AddPoints(x, theApp.m_SaveDataFy, theApp.m_index); //画数据点
2021-07-22 09:06:01 104KB mfc曲线控件 波形图控件 MFC 心跳图
1
通过JS绘制心跳图
2021-06-09 18:04:42 57KB JS 制图 心跳 心跳图
1
echarts 实现的心跳图
2021-04-20 14:05:05 1KB echarts 图表 心跳图/心电图
1
echarts模拟cpu等资源监控,也可用作心跳/心电图,升级版2.0
2021-04-20 14:05:05 2KB echarts cpu监控 心跳图/心电图
1