Hi! I've created a Qwt Plot with the ability to switch between log scale and arithmetic scale. I'd like to be able to exclude any 0s in the data when I am in log scale mode. I set the scale this way:
Qt Code:
  1. plot->setAxisScaleEngine(QwtPlot::yLeft, new QwtLog10ScaleEngine());
To copy to clipboard, switch view to plain text mode 
Then later on when data comes in, I need to filter out the zeros. How can I figure out which scale engine is currently in use? Thanks!