我实现了一个自定义的Callout类,如本示例Callout Example
QPolarChart *chart = new QPolarChart();
Callout *callout = new Callout(chart);
如果我只能访问图表(标注超出范围),如何重新获得对标注的访问权限。我考虑过使用
QObjectList children = chart->children();
,但此处没有标注。 如何再次访问标注?
答案 0 :(得分:1)
您必须使用childItems()
,这将返回QGraphicsItem
的孩子。
for(QGraphicsItem *childItem: chart->childItems()){
if(Callout *c = dynamic_cast<Callout *>(childItem)){
//use c
}
}