active line series count
Posted: Tue Apr 08, 2008 2:26 am
Referring to an old post http://www.teechart.net/support/viewtop ... ive+series, is there any way I could count the number of active line series in the .NET V3?
Based on the old post, I'm currently calculating it with the following code:
Thanks
Based on the old post, I'm currently calculating it with the following code:
Code: Select all
j=0;
for (int i = 0; i < tChart1.Series.Count; i++)
{
if (tChart1[i].Visible == true)
{
j++;
}
}