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;