hello , i want to make something like this

Code:
       int i = 1;

                    while (thisReader.Read())
                    {
                        chart +i+ .Series.Add(thisReader.GetValue(0).ToString());
                        i++;                                                
                    }
so i can fill chart1 , chart2 , chart3 .... as many charts as while will be executed....

is this possible ?