Hi,
I want to parse the ChartType from a dropdown list but I couldnt parse the value, Is there anyway to parse it ?
using System.Web.UI.DataVisualization.Charting;
...
...
Chart2.Series[0].ChartType = Enum.Parse(typeof(SeriesChartType.Area), DropDownList1.Text);
Thx in advance!