Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / LineSeries Class / LineStyle Property
Example


In This Topic
    LineStyle Property
    In This Topic
    Controls the style of the lines.
    Syntax
    'Declaration
     
    <CategoryAttribute("Options")>
    <DescriptionAttribute("Controls the style of the lines.")>
    <DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)>
    Public Property LineStyle As LineSeriesStyle
    'Usage
     
    Dim instance As LineSeries
    Dim value As LineSeriesStyle
     
    instance.LineStyle = value
     
    value = instance.LineStyle
    [Category("Options")]
    [Description("Controls the style of the lines.")]
    [DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public LineSeriesStyle LineStyle {get; set;}
    Remarks
    By default set to Line.
    Example
    The following code will display a line series with tape style.
    line.LineStyle = LineSeriesStyle.Tape
    line.LineStyle = LineSeriesStyle.Tape;
    Requirements

    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

    See Also