Thanks for the response. However, I am not using a zero value data element. Using the SimplePieChart class as an example, the generateData class creates a three element array
self.plotData = @[@20.0, @30.0, @60.0];
I changed it to a single element array:
self.plotData = @[ @60.0];
This change will recreate the problem.