我按照 qt 文档https://doc-snapshots.qt.io/qt5-5.11/qtcharts-legend-example.html从图表中分离图例并设置分离的图例尺寸
legend->detachFromChart();
m_chart->legend()->setBackgroundVisible(true);
m_chart->legend()->setBrush(QBrush(QColor(128, 128, 128, 128)));
m_chart->legend()->setPen(QPen(QColor(192, 192, 192, 192)));
m_chart->legend()->setGeometry(QRectF(80, 50, 100, 180));
m_chart->legend()->setGeometry(QRectF(80, 50, 100, 180)) 不起作用。前两个论点有效。图例的位置是 (80, 50)。但是,最后两个参数不起作用。图例的宽度不是 100,图例的高度不是 180。