.netCHARTING v10.5 Documentation
Example 


dotnetCHARTING Namespace > Chart Class : GanttCompleteHatchStyle Property
GanttCompleteHatchStyle Property
Gets or sets the hatch style drawn on columns and cylinders when an element's Element.Complete value is set.
Syntax
'Declaration
 
Public Property GanttCompleteHatchStyle As HatchStyle
'Usage
 
Dim instance As Chart
Dim value As HatchStyle
 
instance.GanttCompleteHatchStyle = value
 
value = instance.GanttCompleteHatchStyle
public HatchStyle GanttCompleteHatchStyle {get; set;}
Remarks
Typically used with Gantt charts to indicate what percentage of a task has been completed.
Example
//Import Drawing2D : <%@ Import Namespace="System.Drawing.Drawing2D" %>
Chart.GanttCompleteHatchStyle = HatchStyle.DiagonalCross;
'Import Drawing2D : <%@ Import Namespace="System.Drawing.Drawing2D" %>
Chart.GanttCompleteHatchStyle = HatchStyle.DiagonalCross
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also