VARCHART XGantt Gantt Chart and Activity Interactive Tutorial Guide

Since the first commercial version of Xgantt in 1998, Xgantt has been committed to the research and development of controls in planning and project management. After more than 20 years of accumulation and precipitation, it can currently provide software developers and end users with the best The top-level planning and project management control products help users quickly integrate the Gantt chart, network chart, resource histogram, schedule calendar, resource scheduling and other functional modules required by project management software, and provide a full range of support and services .

VARCHART XGantt is a powerful Gantt chart control. Its modular design allows you to create applications that meet your needs. XGantt can be used in .NET, ActiveX and ASP.NET applications, and can be quickly and simply integrated into your application to help you identify performance bottlenecks, avoid delays, and efficiently use resources, making complex data easier to understand.

Planning data related to time and resources, such as work, tasks, orders, activities, and capabilities, are best displayed in a Gantt chart.

In the smart Gantt chart, the planner can take corrective actions at any time.

Speed ​​up your development and create a compelling, easy-to-use visual scheduling experience. VARCHART XGantt has been on the market for nearly 30 years. It provides the most complete C#Gantt chart control, which can be used to build modern and reliable industry resource scheduling applications.

Huidu.com free download the official version of VARCHART XGantt

Create a new event

To create an activity, please switch to create node mode through the context menu of the Gantt chart (right mouse button on the blank area).

The mouse pointer will turn into a small cross shape. Please hold down the left mouse button to draw an activity in the desired area of ​​the Gantt chart. While holding down the left mouse button, draw an activity in the desired area of ​​the Gantt chart. When finished, please return to pointer mode via the context menu. The application can interact with the "create" mode through the VcNodeCreated() event. For example, this is useful if you want to preset data values ​​for the activity you are creating.

Sample code VB.NET


Private Sub VcGantt1_VcNodeCreated(ByVal sender As Object, ByVal e As
VcNodeCreatedEventArgs) Handles VcGantt1.VcNodeCreated
 e.Node.DataField(1) = "Node " + e.Node.DataField(0)
 e.Node.Update()
End Sub

Sample code C

private void vcGantt1_VcNodeCreated(object sender,
VcNodeCreatedEventArgs e)
 {
 e.Node.set_DataField(1, "Node " + e.Node.get_DataField(0))。
 e.Node.Update()。
 }

The above code will modify the value of the data field "Name", it will append the current value of the field "ID" to the term "Node". It will append the current value of the field "ID" to the term "node".

Modify the duration of the event

Go back to "Select" mode and move the mouse pointer to the inner right or left edge of the activity. The mouse pointer will take the shape of a vertical line with an arrow. By dragging left or right, you can lengthen or shorten the event.

Mobile activity

Please switch to "select" mode and place the mouse pointer on an activity. The pointer will turn into a small square with four arrows. Now you can move the activity to any position in the Gantt chart. If you want to move multiple activities at the same time, please activate the "Move selected nodes together" option on the "Nodes" property page.

Edit the data of an event

By double-clicking the activity or the corresponding table item, you can open the "Edit Data" dialog box.

VARCHART XGantt Gantt Chart and Activity Interactive Tutorial Guide

Delete event

Press the Del button or click the Delete node in the activity context menu to delete the marked activity. You can mark an activity or the corresponding row in the table by clicking on it. If you hold down the Ctrl key, you can mark multiple events.
————————————————
APS helps improve the production efficiency of enterprises, truly realize the visual presentation and control of production plans, quickly and effectively respond to production plans in different scenarios, improve on-time delivery capabilities, and increase productivity and Resource utilization

If you want to know about Gantt chart or Huidu APS system, please log in to Huidu.com and consult online customer service to solve your problem!
This article is reproduced from 【Huidu Technology】evget welcomes any form of reprinting, but please be sure to indicate the source, do not modify the relevant links of the original text, and respect the achievements of others’ labor

Guess you like

Origin blog.51cto.com/14874181/2548727