标签: qcustomplot
有谁知道如何从QCustomPlot轴获取轴像素大小?
目前我正在使用
plot-> yAxis-> axisRect() - >宽度();
但这并没有给我正确的价值。
答案 0 :(得分:0)
您可以使用coordToPixel():
double tickInPixelY = customPlot->yAxis->coordToPixel(0)-customPlot->yAxis->coordToPixel(1);
找到一个以像素为单位的刻度线;