'Declaration Public Property Pattern As LinePattern
'Usage Dim instance As LineProperties Dim value As LinePattern instance.Pattern = value value = instance.Pattern
public LinePattern Pattern {get; set;}
'Declaration Public Property Pattern As LinePattern
'Usage Dim instance As LineProperties Dim value As LinePattern instance.Pattern = value value = instance.Pattern
public LinePattern Pattern {get; set;}
Dim chart As Chart = ChartControl.Charts.GetAt(0) Dim bar As BarSeries = CType(chart.Series.Add(SeriesType.Bar), BarSeries) bar.Add(10, "Apples") bar.Add(20, "Oranges") bar.Add(30, "Bananas") bar.Add(25, "Tomatoes") bar.Add(29, "Cucumbers") bar.Appearance.LineMode = AppearanceLineMode.Series bar.BarBorder.Color = System.Drawing.Color.Black bar.BarBorder.Pattern = CType(0x8888, LinePattern) bar.BarBorder.Factor = 1
Chart chart = ChartControl.Charts.GetAt(0); BarSeries bar = (BarSeries)chart.Series.Add(SeriesType.Bar); bar.Add(10, "Apples"); bar.Add(20, "Oranges"); bar.Add(30, "Bananas"); bar.Add(25, "Tomatoes"); bar.Add(29, "Cucumbers"); bar.Appearance.LineMode = AppearanceLineMode.Series; bar.BarBorder.Color = System.Drawing.Color.Black; bar.BarBorder.Pattern = (LinePattern)0x8888; bar.BarBorder.Factor = 1;
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