qt从QChart获取孩子(标注)

时间:2018-07-19 11:02:15

标签: c++ qt qt5 parent-child qtchart

我实现了一个自定义的Callout类,如本示例Callout Example

QPolarChart *chart = new QPolarChart();
Callout *callout = new Callout(chart);

如果我只能访问图表(标注超出范围),如何重新获得对标注的访问权限。我考虑过使用

QObjectList children = chart->children();

,但此处没有标注。 如何再次访问标注?

1 个答案:

答案 0 :(得分:1)

您必须使用childItems(),这将返回QGraphicsItem的孩子。

 for(QGraphicsItem *childItem: chart->childItems()){
     if(Callout *c = dynamic_cast<Callout *>(childItem)){
         //use c
     }
 }