No documentation as it is a property getter */
| 7597 | |
| 7598 | /* No documentation as it is a property getter */ |
| 7599 | QString QCPAxis::numberFormat() const |
| 7600 | { |
| 7601 | QString result; |
| 7602 | result.append(mNumberFormatChar); |
| 7603 | if (mNumberBeautifulPowers) |
| 7604 | { |
| 7605 | result.append(QLatin1Char('b')); |
| 7606 | if (mAxisPainter->numberMultiplyCross) |
| 7607 | result.append(QLatin1Char('c')); |
| 7608 | } |
| 7609 | return result; |
| 7610 | } |
| 7611 | |
| 7612 | /* No documentation as it is a property getter */ |
| 7613 | int QCPAxis::tickLengthIn() const |
no test coverage detected