Check out the following code that can help.
foreach
(ChartSeriesItem myitem
in
chartDef.Series[0].Items)
{
//Put here some logic to calculate the percentage for chart series item. Those items
//falling below that percentage. Make it false.
if
(myitem.YValue == 0)
{
myitem.Label.Visible =
false
;
}
}