No documentation as it is a property getter */
| 7590 | |
| 7591 | /* No documentation as it is a property getter */ |
| 7592 | QString QCPAxis::numberFormat() const |
| 7593 | { |
| 7594 | QString result; |
| 7595 | result.append(mNumberFormatChar); |
| 7596 | if (mNumberBeautifulPowers) |
| 7597 | { |
| 7598 | result.append(QLatin1Char('b')); |
| 7599 | if (mAxisPainter->numberMultiplyCross) |
| 7600 | result.append(QLatin1Char('c')); |
| 7601 | } |
| 7602 | return result; |
| 7603 | } |
| 7604 | |
| 7605 | /* No documentation as it is a property getter */ |
| 7606 | int QCPAxis::tickLengthIn() const |
no test coverage detected