Series Color missing in Legend.
Posted: Mon Jun 22, 2009 8:24 am
Series Color is missing when I add Multiple Lines to a chart. However when I set the FontSeriesColor to true that is correct.
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
for (int i = 0; i < 5; i++)
{
tChart1.Series.Add(new Steema.TeeChart.Styles.Line());
tChart1[i].FillSampleValues();
tChart1[i].ColorEach = false;
}
}