文档彩票走势图>>VARCHART XGantt 2019教程>>VARCHART XGantt系列教程:肖像照增强甘特图的视觉效果
VARCHART XGantt系列教程:肖像照增强甘特图的视觉效果
VARCHART XGantt是一个交互式的甘特图控件,其模块化的设计让您可以创建满足您和您的客户所需求的应用程序。VARCHART XGantt可以快速、简单地集成到您的应用程序中,帮助您识别性能瓶颈、避免延迟以及高效利用资源,使复杂数据变得更加容易理解。
想象一下,您的Gantt chart是按员工分组的,显示每位员工的资源负荷图表(直方图)。 在这种情况下,在直方图旁边显示员工的照片将为您的应用程序增添很大的视觉价值。
如何在.NET甘特图的直方图中显示图像
下面的屏幕截图让您了解我们想要实现的目标:将John,James和Jane的照片放在直方图旁边,这样您就可以立即(直观地)了解他们的工作量。
使用代码添加照片
事件VcObjectDrawn允许您使用自己的程序代码,丰富.NET Gantt控件VARCHART XGantt在设计方面绘制的对象。要绘制图片,请在设计时勾选“编辑直方图”对话框的“色带”区域中所需色带的“对象显示”选项。 由于此选项仅适用于功能区类型“Textual”,因此您可能必须添加另一个功能区。
在VcObjectDrawn事件中执行以下代码:
private void vcGantt1_VcObjectDrawn(object sender, VcObjectDrawnEventArgs e) { Graphics g = e.Graphics; Bitmap myBM = null; switch (e.ObjectType) { case VcObjectType.vcObjTypeNumericScale: //Get the coordinates of a point in the numeric scale int x = e.UpdateRect.Right - 5; int y = e.UpdateRect.Top + 5; //Identify in which histogram we are object identObj = null; VcObjectType identObjType = VcObjectType.vcObjTypeNone; vcGantt1.IdentifyObjectAt(x, y, ref identObj, ref identObjType); VcHistogram histo = (VcHistogram)identObj; switch (histo.Name) { case "A": myBM = new Bitmap(Application.StartupPath + @"\..\..\Bitmaps\Image1.png"); //photo credit: kinojam via photopin cc break; case "B": myBM = new Bitmap(Application.StartupPath + @"\..\..\Bitmaps\Image2.png"); //photo credit: Enthuan via photopin cc break; case "C": myBM = new Bitmap(Application.StartupPath + @"\..\..\Bitmaps\Image3.png"); //photo credit: chris zerbes via photopin cc break; default: break; } //Draw the bitmaps in the numeric scales of the histograms x = e.CompleteRect.Left + 50; y = e.CompleteRect.Top + e.CompleteRect.Height / 2 - 50; g.DrawImage(myBM, x, y, 80, 90); break; } }
希望这篇文章能对您有帮助~
想要购买VARCHART XGantt正版授权,或者获取更多该产品相关信息的朋友可以点击