There are 4 items numbered 1 through 4 on the attached image. I hope to be able to do them by revising the code below:
Question: Could you please review to see if all or some of them doable?
Thank you.
protected void Page_Load(object sender, EventArgs e) { var chartImage = new Chart(); chartImage.Width = 600; chartImage.Height = 400; //chartImage.Titles.Add("Sample Chart"); chartImage.Series.Add("Decade"); // chartImage.Legends.Add(chartImage.Series[0].Name); // optional, show legend // add data points object[] xValue = { "1970", "1980", "1990", "2000", "2010" }; object[] yValues = { "9", "22", "52", "89", "123" }; for (int x = 0; x < xValue.Length; x++) { chartImage.Series[0].Points.AddXY(xValue[x], yValues[x]);} // may need to cast to double, if "option strict" chartImage.ChartAreas.Add("chartArea0"); // always need to add this chartImage.ChartAreas[0].AxisX.Title = "Decade"; // optional, show axis x title // chartImage.ChartAreas[0].AxisY.Title = "Incidence"; // optional, show axis y title chartImage.ChartAreas[0].AxisX.LabelStyle.Angle = 90; chartImage.ImageStorageMode = ImageStorageMode.UseImageLocation; // avoid having to define http handler for now, simpler for quick testing this.Controls.Add(chartImage); // add to page for automatic rendering }
Thank you very much for the very good solution you gave to me. As shown on the attached image:
1. The border for ChartAreas[0] is also eliminated in removing the major axis. I tired to use the line below but it didn't work:
chartImage.ChartAreas[0].BorderColor = System.Drawing.Color.DeepPink;
2. Is it possible to remove the y-axis graduation as well?
I have a follow up question if you have a couple of minutes (in your case probably couple of second because you seem to be very comfortable with the subject).
Thank you very much for the very good solution you gave to me. As shown on the attached image:
1. The border for ChartAreas[0] is also eliminated in removing the major axis. I tired to use the line below but it didn't work:
chartImage.ChartAreas[0].B
2. Is it possible to remove the y-axis graduation as well?
Regards,
Mike