Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.8.0
-
None
-
-
2d1fa5281 (dev), c2b18dc1a (6.9), ceea75ae7 (6.8)
Description
Vertical ValueAxis title is rendered on the axis labels when the string is long enough. Apparently the longer it is the further to the right it is rendered.
Minimal reproducible example:
import QtQuick import QtGraphs Window { width: 640 height: 480 visible: true title: qsTr("Graphs 2D - Line Graph") GraphsView { anchors.fill: parent axisX: ValueAxis {} axisY: ValueAxis { titleText: "Y axis loooooooooooong title" titleColor: "white" } } }