Is there a way to show a null value in QCustomPlot by hiding the grid? I tried to hide the grid with the following line:
ui->customPlot->xAxis->grid()->setVisible(false);
ui->customPlot->yAxis->grid()->setVisible(false);
But it also hides zeros. I need to keep the zeroers visible.
source
share