Hi...
How to create excel charts in ASP.NET ??
My Requirement -
User will select the dates (from 1st dec 2014 to 31st jan 2015) from front-end.
The system will get data in datatable (Date and value)
ID
| Date
| Value
|
1
| 1-Dec-2014
| 100
|
2
| 15-Dec-2014
| 150
|
3
| 30-dec-2014
| 190
|
4
| 5-Jan-2015
| 250
|
Now, I want to create a graph just like in excel, with X-Axis with "Value" Column and Y-Axis with "Date" Column.
How do I do that ?