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 ?
Wang WenPosted May 12, 2015, 3:23 AM
You can try Vancharts. It's a javascript chart maker. Its designer provides three different data sources: local EXCEL, on-line JSON and built-in dataset.
Riddhi ValechaPosted Feb 3, 2015, 2:13 AM
I tried ChartControl, but its visuallisation is not proper... It was rejected..
I have my values (X-axis and Y-Axis) columns in datatable.
And I have to display it on webpage... not in excel...
Jacke ElisPosted Jan 29, 2015, 9:07 AM
This is coded by an excel library for C#, you just directly import your DataTable to an Excel and after that just export your excel (or part of it) to ASP.NET client.
Bhushan GawalePosted Jan 19, 2015, 12:50 PM
You can get started here -
http://www.codeproject.com/Articles/235117/ASP-NET-Chart-Control
Suraj SahooPosted Jan 19, 2015, 12:02 PM
The below link will surely help you. I hope the article will meet your requirement.
http://www.c-sharpcorner.com/UploadFile/d2dcfc/C-Sharp-create-excel-report-chart-contained-with-mark-designe/
Thanks