Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / LegendData Class / OutlineVerticalLinesProps Property
Example


In This Topic
    OutlineVerticalLinesProps Property
    In This Topic
    The line properties used to draw the outer vertical legend grid lines.
    Syntax
    'Declaration
     
    <CategoryAttribute("General")>
    <DescriptionAttribute("The line properties used to draw the outer vertical legend grid lines.")>
    Public Property OutlineVerticalLinesProps As LineProperties
    'Usage
     
    Dim instance As LegendData
    Dim value As LineProperties
     
    instance.OutlineVerticalLinesProps = value
     
    value = instance.OutlineVerticalLinesProps
    [Category("General")]
    [Description("The line properties used to draw the outer vertical legend grid lines.")]
    public LineProperties OutlineVerticalLinesProps {get; set;}
    Remarks
    By default the outer vertical grid lines are solid black with width 1.
    Example
    The following example disables the outer vertical grid lines.
    Dim legend As Legend = CType(NChartControl.Legends(0), Legend)
    legend.Data.OutlineVerticalLinesProps.Width = 0
    Legend legend = (Legend)NChartControl.Legends[0];
    legend.Data.OutlineVerticalLinesProps.Width = 0;
    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