Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.8.1
-
None
-
Windows 10 22H2, MSVC 2022 x64
Description
Code
import QtQuick import QtGraphs Window { width: 400 height: 300 visible: true title: "Bars" GraphsView { anchors.fill: parent axisX: BarCategoryAxis { titleText: "Year" categories: [2023, 2024, 2025] } axisY: ValueAxis { titleText: "Profits" max: 600 } BarSeries { BarSet { values: [300, 400, 500] } } } }
Actual Result
The y-axis title is clipped by the edge of the window:
Expected Result
Changing the text from "Profits" to "Profits ($)" seems to fix it: