I want to display the value in table which i calcute in chart
ex:
month salary
march(chart xaxis) 2000(chart yaxis sumof salary)
april 3000
plz help me with code
Hi,
Please refer below link
http://www.aspforums.net/Threads/164306/How-to-Generate-the-yearly-bar-chart-genration-by-getting-month-and-year-as-value/
and just make changes in code after getting result.i.e
C#
DataTable dtChartData = new DataTable(); dtChartData.Columns.Add("Month"); dtChartData.Columns.Add("Value"); foreach (MonthChart item in result) { dtChartData.Rows.Add(item.Month, item.OrderCount); }
I hope this will help you out.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.