Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi, I have created charts dynamically but I want to save chart created in image list or any other types of lists, as long as is not in folder.

Question: How to save chart created in image list/other type of list?

This is my codes:
C#
Chart Chart1 = new Chart();
                          Chart1.DataSource = dt;
                          Chart1.Width = 800;
                          Chart1.Height = 500;

                          Chart1.Series.Add(new Series());
                          Chart1.Series[0].ChartType = SeriesChartType.BoxPlot;

                          List<object> List_CHART = dt.AsEnumerable().ToList<object>();

                          foreach (DataRow row in dt.Rows)
                          {
                              Chart1.Series[0].Points.AddXY(row["TITLE"], new object[] { row["MIN"], row["MAX"], row["25TH_PERCENTILE"], row["75TH_PERCENTILE"], row["50TH_PERCENTILE"], row["AVG"] });
                          }

                          //create chartareas
                          ChartArea ca= new ChartArea();
                          ca.AxisX = new Axis();
                          ca.AxisY = new Axis();
                          Chart1.ChartAreas.Add(ca);

                          //databind
                          Chart1.DataBind();
                          Chart1.Visible = true;

                          panel.Controls.Add(Chart1);

Thanks.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900