我是 QCustomPlot 的新手,但我无法创建 TickStep 的自定义大小。
现在,我有这个情节,(时间是从另一天的 6:00 到 6:00)。
我想要的 X 轴标签是什么:
我试图玩 setTickStep 但没有任何成功。
QVector<double> x(96), y(96);
for (int i=0; i<95; ++i)
{
x[i] = i*900+22500;
y[i] = someValues loaded from db
}
ui->customPlot->addGraph();
ui->customPlot->setBackground(QBrush(QColor(239, 239, 239, 255)));
ui->customPlot->graph(0)->setData(x, y);
ui->customPlot->xAxis->setRange(21600, 108000);
ui->customPlot->xAxis->setTickLabelType(QCPAxis::ltDateTime);
ui->customPlot->xAxis->setDateTimeFormat("h:mm");
//ui->customPlot->xAxis->setTickStep(7200);