.netCHARTING v10.5 Documentation
Example 


dotnetCHARTING Namespace > Chart Class : HatchStylePalette Property
HatchStylePalette Property (Chart)
Gets or sets a hatch style palette that will trickle to all series on the chart. The hatch patterns will not show on chart elements if a hatch color is not specified. The default hatch color can be specified with the Chart.DefaultSeries.DefaultElement.HatchColor property.
Syntax
'Declaration
 
Public Property HatchStylePalette As HatchStyle()
'Usage
 
Dim instance As Chart
Dim value() As HatchStyle
 
instance.HatchStylePalette = value
 
value = instance.HatchStylePalette
public HatchStyle[] HatchStylePalette {get; set;}
Remarks
For a complete list of hatch styles see HatchStyle enumeration.
Example
Chart.HatchStylePalette = new HatchStylePalette [] {HatchStyle.Cross,HatchStyle.Divot,HatchStyle.Horizontal};
Chart.HatchStylePalette = New HatchStylePalette [] {HatchStyle.Cross,HatchStyle.Divot,HatchStyle.Horizontal}
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