The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
GAGurunathan A Syncfusion Team August 7, 2019 09:20 AM UTC
Hi Ivan,
Greetings from Syncfusion support.
No
Queries
Syncfusion Comments
1
How to use these classes?
`gantt.cs`;
`bindingdata.cs`
`mappingfields.cs`
`definingcolumns.cs`
These are the controller files used to provide the data source to Gantt. This files not related to each other file. This are specific to the topic where it is mentioned.
Please find the code snippets of example controller file with view name as Index.
publicclassHomeController : Controller
{
public IActionResult Index()
{
ViewBag.DataSource = ganttData();
return View();
}
//...
}
2
How to create a Gantt chart?
We have prepared a simple Gantt sample by following the steps mentioned in UG documentation. In this, we have created the HomeController.cs file with Index.cshtml view page. Please find the sample from below link.