! \internal Returns the unicode string representation of the fraction given by \a numerator and \a denominator. This is the representation used in \ref fractionToString when the fraction style (\ref setFractionStyle) is \ref fsUnicodeFractions. This method doesn't use the single-character common fractions but builds each fraction from a superscript unicode number, the unicode fract
| 6947 | superscript unicode number, the unicode fraction character, and a subscript unicode number. |
| 6948 | */ |
| 6949 | QString QCPAxisTickerPi::unicodeFraction(int numerator, int denominator) const |
| 6950 | { |
| 6951 | return unicodeSuperscript(numerator)+QChar(0x2044)+unicodeSubscript(denominator); |
| 6952 | } |
| 6953 | |
| 6954 | /*! \internal |
| 6955 |
nothing calls this directly
no outgoing calls
no test coverage detected