This question is locked. New answers and comments are not allowed.
I am using an older version of the RadControls (2011.3.1115.40). I would like to save the charts to jpeg format. I have a button on the form which invokes the following event:
protected void btnSaveChar_OnClick(object sender, EventArgs e)
{
RadChart1.Save(Server.MapPath("~/files/chart.jpg"), System.Drawing.Imaging.ImageFormat.Jpeg);
}
This definitely saves the chart, but its a blank chart with the label "There is no or empty series". What do I need to do to save the chart as it is displayed on the webform?
Thanks!
protected void btnSaveChar_OnClick(object sender, EventArgs e)
{
RadChart1.Save(Server.MapPath("~/files/chart.jpg"), System.Drawing.Imaging.ImageFormat.Jpeg);
}
Thanks!