Elevazione in potenza
-
Ciao a tutti ragazzi sono nuovo nel forum, e vorrei il vostro aiuto per risolvere un problema che può sembrare banale ma al momento non sono riuscito a trovare soluzione. Sto Qt con C++, sto plottando un grafico con la classe QCustomPlot, ed in particolare devo inserire le unità di misura sugli assi.
Ho utilizzato il seguente metodo:ui->graph->xAxis->setLabel("cm−1");
e vorrei visualizzare il -1 all'esponente di cm.
Qualcuno sa dirmi come fare?
Vi ringrazio in anticipo 😁 -
@_DC_ said in Elevazione in potenza:
Hi all guys I'm new in the forum, and I would like your help to solve a problem that may seem trivial but at the moment I have not been able to find a solution. I'm Qt with C ++, I'm plotting a chart with the QCustomPlot class, and in particular I have to insert the units of measurement on the axes.
I used the following method:
UI-> graph-> xAxis-> setLabel ( "cm-1");
and I would like to display the -1 to the exponent of cm.
Can anyone tell me how to do it?
Thank you in advance 😁I do not see that
QCPAxis::setLabel ( const QString & str)
says it accepts rich text/HTML instr
. In that case, I can only think maybe usingQCPAxis::setLabelFont ( const QFont & font)
if you can find a font a font which has the superscript-1
defined as a character and if you can that character into thestr
to pass toSetLabel()
?