Version

LineChart Property

Returns an Appearance object that you can use to access all the formatting properties of a Line Chart.
Syntax
'Declaration
 
Public Property LineChart As LineChartAppearance
public LineChartAppearance LineChart {get; set;}
Example
'see chart text properties
'ultrachart1.LineChart.ChartText
'sets the style used for drawing the line
UltraChart1.LineChart.DrawStyle = Infragistics.UltraChart.[Shared].Styles.LineDrawStyle.Dash
'sets the styles for the beginning and end of the line
UltraChart1.LineChart.StartStyle = Infragistics.UltraChart.[Shared].Styles.LineCapStyle.NoAnchor
UltraChart1.LineChart.EndStyle = Infragistics.UltraChart.[Shared].Styles.LineCapStyle.Flat
'winchart only- determines whether to highlight the entire line when a point is mosed over
UltraChart1.LineChart.HighLightLines = True
'turns on/off the midpoints of the line
UltraChart1.LineChart.MidPointAnchors = True
'determines how to handle nulls for the line chart
UltraChart1.LineChart.NullHandling = Infragistics.UltraChart.[Shared].Styles.NullHandling.RemoveItems
'sets the thickness of the line
UltraChart1.LineChart.Thickness = 3
// see chart text properties
        // ultrachart1.linechart.charttext
        // sets the style used for drawing the line
        UltraChart1.LineChart.DrawStyle = Infragistics.UltraChart.[Shared].Styles.LineDrawStyle.Dash;
        // sets the styles for the beginning and end of the line
        UltraChart1.LineChart.StartStyle = Infragistics.UltraChart.[Shared].Styles.LineCapStyle.NoAnchor;
        UltraChart1.LineChart.EndStyle = Infragistics.UltraChart.[Shared].Styles.LineCapStyle.Flat;
        // winchart only- determines whether to highlight the entire line when a point is mosed over
        UltraChart1.LineChart.HighLightLines = True;
        // turns on/off the midpoints of the line
        UltraChart1.LineChart.MidPointAnchors = True;
        // determines how to handle nulls for the line chart
        UltraChart1.LineChart.NullHandling = Infragistics.UltraChart.[Shared].Styles.NullHandling.RemoveItems;
        // sets the thickness of the line
        UltraChart1.LineChart.Thickness = 3;
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