如何在底部垂直堆叠QT Charts图例项

时间:2016-08-31 07:22:37

标签: c++ qt qtchart

我需要将图例项目叠加在一起(垂直)。

当我这样做时:

QtCharts::QChart *m_pieChart; //member variable
m_pieChart->legend()->setAlignment(Qt::AlignRight);

我明白了:

legend items stacked vertically on the right side

将对齐设置为底部会将图例移动到底部:

m_pieChart->legend()->setAlignment(Qt::AlignBottom);

但是图例项目不再垂直堆叠!

legend items horizontalle under the chart

如何将图例移到底部并将它们垂直堆叠?

0 个答案:

没有答案