我创建了一个带有 2 个饼图的图形,例如 donutchart:第一个是“ pieChart ”,第二个是“ centerDonut ”。
centerDonut 只有 1 个切片,白色,值为 1。
如果用户按下“pieChart”的一部分,它与正确的索引配合得很好。如果用户按下“centerDonut”的一片,方法返回“pieChart”的距离而不是“centerDonut”。
为什么会这样?我尝试使用[self.centerDonut zPosition:1]
,但它不起作用。
-(void)initPlot {
[self configureHost];
[self configureGraph];
//in configureChart I configure and add the pieChart and then the centerDonuts
[self configureChart];
//I have 2 label in storyboard over the graph, set value of them and display.
[self totLabelsOverAll];
}