Thank you, Dimitar…
The example you sent is interesting, but I’m not sure it would work well for my application. I would not know in advance when a particular value would be zero, and multiple dataFields could be zero…
What I did as a workaround was to send the zero pie slice off the chart, so it is not seen.
Like this:
centerOffset: function(item)
{
if (dataAdapter.records[item.itemIndex].myValue == 0)
return 999;
return 0;
},
But there must be a “behind the curtain” value that you are using to toggle the dataField on/off when you click on the Legend bullet…
I respectfully ask if you could consider exposing this value / capability in a future release…
Thank you!