hello,i have a plot for my logic analyzer that i want to view it's thicker in ns,us,etc.
i am using :
[QSharedPointer<QCPAxisTickerTime> timeTicker(new QCPAxisTickerTime);
ui->customPlot->xAxis->setTicker(timeTicker);
timeTicker->setTimeFormat("%sus");]
if the sample rate is 1mhz(each data point=1 us),it is true.
but when sample rate is 10 mhz,each data point is 0.1us and it is would be false.
how can fix it?
thank U