Hi i need help in displaying my radchart.
My datatable looks like below
DataTable dt = new DataTable();
dt.Columns.Add("Country");
dt.Columns.Add("Jan");
dt.Columns.Add("Feb");
dt.Columns.Add("Mar");
dt.Columns.Add("Apr");
dt.Rows.Add("US",134,1657.5,10.8,10); //for every month i have some amounts associated for country
i am having months as columns and for country wise i am having data for months in currency.
want to display radchart with currency on y-axis for all the months on x-axis using colors for countrywise data
like for "US" want to show red for my bars for every month data similarly for other countries.
my month names should appear on x-axis labels and my country names as legend items.
Please help me in achieving this.