Lamloumi2
Lamloumi2

Reputation: 235

Adding a dynamic chart in asp.net mvc4

I have an asp.net mvc4 application in which i have to add a gantt chart to manage tasks of my project . So i need a tool, component or a library whichi can do with it a chart like : the chart

I found many chart using web forms, but in my case (asp mvc) i didn't found.

So what component can i use?

Upvotes: 0

Views: 3676

Answers (1)

Bilal Fazlani
Bilal Fazlani

Reputation: 6977

Give Google Charts a try. Here's the library and API reference.

Its totally client side. So has no dependency on webforms or MVC. I have used them in my previous project and I have a positive feedback.

Not sure if has gantt chart though.


Other gantt charts that will work for MVC:

  1. http://mvc.syncfusion.com/demos/ui/chart/ChartType/AdvancedChartType
  2. http://demos.radiantq.com/jQueryGanttDemo/Demo.htm
  3. http://mvc.daypilot.org/demo/Scheduler/Gantt

Upvotes: 1

Related Questions