void MainWindow::setupBarChartDemo(QCustomPlot *customPlot)
{
demoName = "Bar Chart Demo";//实例名称
// set dark background gradient: 设置暗背景渐变
QLinearGradient gradient(0, 0, 0, 400);
gradient.setColorAt(0, QColor(90, 90, 90));//开始颜色为黑色
gradient.setColorAt(0.38, QColor(200, 105, 105));//红色
gradient.setColorAt(1, QColor(70, 70, 70));//黑色
customPlot->setBackground(QBrush(gradient));//设置图表背景(用画刷设置)
// create empty bar chart objects: 这个就是创建柱状图了
//新版本应该是取消了之前的AddPlottable(不是很清楚,大概这样子)
//然后直接在new QCPBars的时候指定x,y轴就可以了
QCPBars *regen = new QCPBars(customPlot->xAxis, customPlot->yAxis);
QCPBars *nuclear = new QCPBars(customPlot->xAxis, customPlot->yAxis);
QCPBars *fossil = new QCPBars(customPlot->xAxis, customPlot->yAxis);
re