I would like how to print axes numbers without comma as thousands separator inside QwtPlot representation
Thank you
I would like how to print axes numbers without comma as thousands separator inside QwtPlot representation
Thank you
opiate (4th March 2013)
Thank you very much Uwe
My idea was avoid the comma or point separator, so I did this and it works!:
QLocale locale;
locale.setNumberOptions(QLocale::OmitGroupSeparato r);
QLocale::setDefault(locale);
embeddedmz (29th July 2019)
Bookmarks