Error bar in QT

霸气de小男生 提交于 2021-02-19 06:10:20

问题


I am trying to create Error bar in QT using Box and Whiskers. I get the following plot:

But desired is something like this

Code for box i used is:

QBoxSet *box = new QBoxSet(0);
box->setValue(QBoxSet::LowerExtreme, min);
box->setValue(QBoxSet::UpperExtreme, max);
box->setValue(QBoxSet::LowerQuartile,fres);

The QBoxSet::LowerExtreme is behind the box, how I can move it on top of the box? or is there any other method to do this?

来源:https://stackoverflow.com/questions/46276086/error-bar-in-qt

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!