Pie Chart, Pie Seperators
Posted: Fri Sep 21, 2012 8:14 am
Is it possible to change the Pie Chart, Pie Seperators from black to white and to also increase the thickness?
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
private void InitializeChart()
{
Steema.TeeChart.Styles.Pie pie1 = new Steema.TeeChart.Styles.Pie(tChart1);
pie1.Add(1, Color.Red);
pie1.Add(2, Color.White);
pie1.Add(3, Color.Blue);
pie1.ColorEach = false;
pie1.Pen.Color = Color.Lime;
}