user3239349
user3239349

Reputation: 917

Creating gantt chart in C#

I need a help creating gantt chart, that will look like this below enter image description here 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

Answers (3)

derekantrican
derekantrican

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

screenshot

Upvotes: 3

AlexK
AlexK

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

Selim Balci
Selim Balci

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

Related Questions