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);