In 6.0 you could disable the the drawing of ticks on a slider as follows;
scaleDraw()->enableComponent(QwtAbstractScaleDraw::Backbone, false);
How do you do this now in 6.1?
Printable View
In 6.0 you could disable the the drawing of ticks on a slider as follows;
scaleDraw()->enableComponent(QwtAbstractScaleDraw::Backbone, false);
How do you do this now in 6.1?
The same way ( using a const_cast ) - or using setScaleDraw(), what is intended by the API.
Uwe