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


In This Topic
    LineFillEffect Property
    In This Topic
    Controls the fill effect applied on the lines.
    Syntax
    'Declaration
     
    <CategoryAttribute("Series Appearance")>
    <DescriptionAttribute("Controls the fill effect applied on the lines.")>
    Public Property LineFillEffect As FillEffect
    'Usage
     
    Dim instance As LineSeries
    Dim value As FillEffect
     
    instance.LineFillEffect = value
     
    value = instance.LineFillEffect
    [Category("Series Appearance")]
    [Description("Controls the fill effect applied on the lines.")]
    public FillEffect LineFillEffect {get; set;}
    Remarks
    If the line series is displayed in Tape or Tube style this fill effect controls the filling of all line segments if the FillMode property of the associated Appearance object is set to Series.
    Example
    The following code displays a tape line series in blue color.
    lineSeries.LineStyle = LineSeriesStyle.Tape
    line.Appearance.FillMode = AppearanceFillMode.Series
    line.LineFillEffect.SetSolidColor(Color.Blue)
    lineSeries.LineStyle = LineSeriesStyle.Tape;
    line.Appearance.FillMode = AppearanceFillMode.Series;
    line.LineFillEffect.SetSolidColor(Color.Blue);
    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