| 430 | } |
| 431 | |
| 432 | TextAttributes CartesianAxis::titleTextAttributes() const |
| 433 | { |
| 434 | if (hasDefaultTitleTextAttributes()) { |
| 435 | TextAttributes ta(textAttributes()); |
| 436 | Measure me(ta.fontSize()); |
| 437 | me.setValue(me.value() * 1.5); |
| 438 | ta.setFontSize(me); |
| 439 | return ta; |
| 440 | } |
| 441 | return d->titleTextAttributes; |
| 442 | } |
| 443 | |
| 444 | void CartesianAxis::resetTitleTextAttributes() |
| 445 | { |
no test coverage detected