Support and contact
If you experience problems with our products – please submit a repeating sample to support@plexityhide.com (send zip as file references via Google Drive or OneDrive or the like) We fix… Continue reading
If you experience problems with our products – please submit a repeating sample to support@plexityhide.com (send zip as file references via Google Drive or OneDrive or the like) We fix… Continue reading
This is an example on how to use the Gantt chart in WPF The sample shows the GTP.NET.SL when put to use in a model driven application by CapableObjects.com… Continue reading
Beta builds of GTP.NET targeting .net core 3.1 WindowsForms available here: https://plexityhide.com/pub/DOTNETCORE31_PlexityHide.GTP.dll.zip… Continue reading
…up in the tooltip …”; then private void gantt1_OnGridMouseMove(object sender, System.Windows.Forms.MouseEventArgs e) { Cell cell=gantt1.Grid.GridStructure.CellFromXY(e.X,e.Y); string tooltiptext=””; if (cell!=null) { if (cell.Node.UserReference is… Continue reading
…yes. The term “drill down” implies that there is data “under” this time item, and there probably is, but that is up to you to decide what that data is…. Continue reading
…e) { int width = Math.Min(e.Cell.CellRect.Width, imageList.ImageSize.Width); int height = Math.Min(e.Cell.CellRect.Height, imageList.ImageSize.Width); int size = Math.Min(width, height); int x = e.Cell.CellRect.Left + Math.Max(0, (e.Cell.CellRect.Width – size)… Continue reading
…Code? Answer Correct. The selection is one thing, and the Focused or Current time item is another thing. Selection state is controlled with dataEntity.Selected=true/false And Focus/Current is controlled with IphGantX3.SetCurrentDataEntityGantArea(dataentity)…. Continue reading
…are using the Grid option, the events you must use are different; UseGridNotTree=true. Try, for example; phGant.Grid.GetTree.OnExpand phGant.Grid.GetTree.OnCollapse phGant.Grid.OnCellSelectionChanged phGant.Grid.GetTree.OnDeleteItem phGant.Grid.GetTree.OnInsertItem phGant.Grid.OnEditStop phGant.Grid.OnEditorCanModify phGant.Grid.OnInitTreeSubDataList phGant.Grid.OnClick phGant.Grid.OnRightClick phGant.Grid.OnDblClick phGant.Grid.OnMouseDown phGant.Grid.OnMouseUp phGant.Grid.OnMouseMove… Continue reading
…lines to distinguish rows. The answer was: draw a line using GDI. We did this, but there are difficulties with printing. You have to make a (nonlinear) correction for vertical… Continue reading
Question Question:Is there a basic example on how to use OnVirtualLoad_GantTime. I found one for the Grid, but not the GantTimes. I am using the phGantTimePackage for VCL v3.2.1. Thanks… Continue reading