I use a steema teechart in my C# project. I want to assign custom color palette to single series of the pie chart. I works only when chart has big size. When the chart is limited to small area e.g 300x300 all points on the chart are draw in the same color which is the first color from my palette:
However when I increase the size of Chart area to 600x600 then chart has colors from my palette.
I have noticed that this happens when there is at least 8,9 points in series. I have try following methods to assign my colors.
ApplyPalette(...
pieSeries[i].Color = _currentColorPalette[i];
ColorMember
property and give the relevant color in datasource
.
Does anybody meet this problem. Thanks