Reputation: 917
I need a help creating gantt chart, that will look like this below
I am using DevExpress 12.2, and WinForms.
It doesn't need to be done with DevEpress, I just need to get that look.
Thank you
Upvotes: 0
Views: 19610
Reputation: 2285
It's been a while since this was asked, but I've wanted something like this too. I looked at other WinForms Gantt Chart controls available and found they were pretty complicated. So I made a simple, yet highly-customizable Gantt Chart for WinForms: https://github.com/derekantrican/GanttChart . No DevExpress required
However, the "month view" that you want isn't implemented yet
Upvotes: 3
Reputation: 128
In case if you are looking for a full-featured interactive Gantt view, you can also check the Scheduler Control - Gantt View.
Upvotes: 0
Reputation: 910
It has been a while since I last used DevExpress, but I recently used the following open source control, which is quite easy to implement and well-documented. I strongly suggest you to take a look into it.
Codeplex - .NET Winforms Gantt Chart Control
Also, you could probably do something with the Chart control of .NET but that will just require a lot more work, so I'd give the link I put above a shot.
Upvotes: 0