Unable to change color on Line TeeChart, Version=3.5.3274.30
Posted: Tue Jan 06, 2009 3:20 pm
Hi,
Unable to change color on Steema.TeeChart.Styles.Line after it is initially set.
Used below code to change the color
Best Regards
Srinivas Avancha.
Unable to change color on Steema.TeeChart.Styles.Line after it is initially set.
Used below code to change the color
Code: Select all
private void line1_DblClick(object sender, MouseEventArgs e)
{
line1.Brush.Color = line1.Brush.Color == Color.Green ? Color.Blue : Color.Green;
Text = string.Format("Line color set to {0}", line1.Brush.Color.Name);
}
Srinivas Avancha.