dotnetCHARTING Send comments on this topic.
GanttCompleteHatchStyle Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : GanttCompleteHatchStyle Property


Gets or sets the hatch style drawn on columns and cylinders when an element's Element.Complete value is set.

Syntax

Visual Basic (Declaration) 
Public Property GanttCompleteHatchStyle As HatchStyle
Visual Basic (Usage)Copy Code
Dim instance As Chart
Dim value As HatchStyle
 
instance.GanttCompleteHatchStyle = value
 
value = instance.GanttCompleteHatchStyle
C# 
public HatchStyle GanttCompleteHatchStyle {get; set;}

Example

C#Copy Code
//Import Drawing2D : <%@ Import Namespace="System.Drawing.Drawing2D" %>
Chart.GanttCompleteHatchStyle = HatchStyle.DiagonalCross;
    
Visual BasicCopy Code
'Import Drawing2D : <%@ Import Namespace="System.Drawing.Drawing2D" %>
Chart.GanttCompleteHatchStyle = HatchStyle.DiagonalCross

Remarks

Typically used with Gantt charts to indicate what percentage of a task has been completed.

See Also

© 2010 All Rights Reserved.