Hi Evgeny,
The stylesheet also applies settings for data label style - in order to replicate this you'll have to loop trough the data points in the pie and create an individual data label style for each data point. The following code shows how to do that:
pie.DataLabelStyles.Clear();
for (int i = 0; i < pie.Values.Count; i++)
{
NDataLabelStyle dls = (NDataLabelStyle)pie.DataLabelStyle.Clone();
NStandardFrameStyle frame = new NStandardFrameStyle();
Color fillColor = ((NFillStyle)pie.FillStyles[i]).GetPrimaryColor().ToColor();
frame.InnerBorderColor = fillColor;
dls.TextStyle.BackplaneStyle.StandardFrameStyle = frame;
dls.ArrowStrokeStyle.Color = fillColor;
pie.DataLabelStyles[i] = dls;
}
Best Regards,
Nevron Support Team