QCustomPlot下setTickLabelType()函数在新版本被移除如何解决
之前使用的是1.3版本的QCustomPlot,这次换成2.0版本后发现很多函数被移除了,之前用setTickLabelType()这个函数是设置x轴显示日期的,也不能用,最后找到了在新版本中是这么用:
QSharedPointer<QCPAxisTickerDateTime> dateTick(new QCPAxisTickerDateTime); dateTick->setDateTimeFormat("MM-dd"); ui->customplot->xAxis->setTicker(dateTick);