# qt_chart_module **Repository Path**: a-flying-panda/qt_chart_module ## Basic Information - **Project Name**: qt_chart_module - **Description**: 创建一个动态显示图表 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-02 - **Last Updated**: 2025-04-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # qt_chart_module ![](./gif/图表效果演示.gif) #### 移植方法 * 创建对象 ```C chart2 = new chart_data(ui->tab); ``` * 添加布局 ```C ui->tab->setLayout(chart2->vlayout); ``` * 添加数据 ```c chart2->append_data(speed); ``` --- ```C * @创建对象:chart2 = new chart_data(ui->tab); * @添加布局:ui->tab->setLayout(chart2->vlayout); * @添加数据:chart2->append_data(speed); ``` ####