Is there any way of showing zeroline in QCustomPlot while hiding grid? I have tried hiding grid with following line:

ui->customPlot->xAxis->grid()->setVisible(false);
ui->customPlot->yAxis->grid()->setVisible(false);

But this also hides the zerolines. I need to keep zerolines visible.

有帮助吗?

解决方案

Set Qt::NoPen to QCPGrid::setPen/setSubGridPen, but not setZeroLinePen.

其他提示

Current->xAxis->grid()->setSubGridVisible(false); 
Current->yAxis->grid()->setSubGridVisible(false);
//grid handling
bool isGridLineVisible() const;
void setGridLineVisible(bool visible = true);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top