'Declaration Public Property AreaChart As AreaChartAppearance
public AreaChartAppearance AreaChart {get; set;}
'sets the style for the line of the area chart UltraChart1.AreaChart.LineDrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dash 'sets the End Point style for the line UltraChart1.AreaChart.LineEndCapStyle = Infragistics.UltraChart.Shared.Styles.LineCapStyle.DiamondAnchor 'sets the starting point style for the line UltraChart1.AreaChart.LineStartCapStyle = Infragistics.UltraChart.Shared.Styles.LineCapStyle.RoundAnchor 'sets the thickness of the line that is being drawn UltraChart1.AreaChart.LineThickness = 4 'determines whether or not to show the points on the line UltraChart1.AreaChart.MidPointAnchors = True
// sets the style for the line of the area chart UltraChart1.AreaChart.LineDrawStyle = Infragistics.UltraChart.Shared.Styles.LineDrawStyle.Dash; // sets the End Point style for the line UltraChart1.AreaChart.LineEndCapStyle = Infragistics.UltraChart.Shared.Styles.LineCapStyle.DiamondAnchor; // sets the starting point style for the line UltraChart1.AreaChart.LineStartCapStyle = Infragistics.UltraChart.Shared.Styles.LineCapStyle.RoundAnchor; // sets the thickness of the line that is being drawn UltraChart1.AreaChart.LineThickness = 4; // determines whether or not to show the points on the line UltraChart1.AreaChart.MidPointAnchors = True;
Target Platforms: Windows 10, Windows 8.1, Windows 8, 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