| 318 | } |
| 319 | |
| 320 | void AbstractDiagram::setAllowOverlappingDataValueTexts(bool allow) |
| 321 | { |
| 322 | DataValueAttributes attrs = dataValueAttributes(); |
| 323 | attrs.setShowOverlappingDataLabels(allow); |
| 324 | setDataValueAttributes(attrs); |
| 325 | d->allowOverlappingDataValueTexts = allow; |
| 326 | emit propertiesChanged(); |
| 327 | } |
| 328 | |
| 329 | bool AbstractDiagram::allowOverlappingDataValueTexts() const |
| 330 | { |
nothing calls this directly
no test coverage detected