##// END OF EJS Templates
Fixed a bug with axis titles in QML F1 Legends demo
Tero Ahola -
r2301:26696b77b7fe
parent child
Show More
@@ -66,8 +66,8 Rectangle {
66 66 chartView.axisY().min = 0;
67 67 chartView.axisY().max = 250;
68 68 chartView.axisY().tickCount = 6;
69 chartView.axisY().title = "speed (kph)";
70 chartView.axisX().title = "speed trap";
69 chartView.axisY().titleText = "speed (kph)";
70 chartView.axisX().titleText = "speed trap";
71 71 chartView.axisX().labelFormat = "%.0f";
72 72 }
73 73 lineSeries.append(speedsXml.get(currentIndex).speedTrap, speedsXml.get(currentIndex).speed);
General Comments 0
You need to be logged in to leave comments. Login now