Version

AreaChart Property

Returns an Appearance object that you can use to access all the formatting properties of an Area Chart.
Syntax
'Declaration
 
Public Property AreaChart As AreaChartAppearance
public AreaChartAppearance AreaChart {get; set;}
Example
Setting AreaChart Appearances
'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
Setting AreaChart Appearances
// 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;
Requirements

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

See Also