I would like how to print axes numbers without comma as thousands separator inside QwtPlot representation
Thank you
Printable View
I would like how to print axes numbers without comma as thousands separator inside QwtPlot representation
Thank you
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);