Resize QChartView automatically
-
I have a QFrame transormed from a Horizontal Layout. I'm using it for QChartView:
QLineSeries * series = new QLineSeries(); QChart * chart = new QChart(); chart ->legend()->hide(); chart ->addSeries(series); chart ->createDefaultAxes(); chart ->setTitle("Chart"); QChartView * chartView = new QChartView(chart); chartView ->setRenderHint(QPainter::Antialiasing); chartView ->setParent(ui->chart);
The problem is that the chart is not resizing when I resize a window. It resizes only using chartView->resize(). centralwidget is set to Vertical Layout. How can I set the QChartView to resize automatically to fit the content?
-
Hi,
Please show the complete widget setup with the QFrame.
-
Hi
You seems not to insert the chartView into the layout you put on central/frame