Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / Series Class / Appearance Property
Example


In This Topic
    Appearance Property (Series)
    In This Topic
    Gives you access to the Appearance object
    Syntax
    'Declaration
     
    <CategoryAttribute("Attributes")>
    <DescriptionAttribute("Controls the appearance of the data points.")>
    Public Property Appearance As Appearance
    'Usage
     
    Dim instance As Series
    Dim value As Appearance
     
    instance.Appearance = value
     
    value = instance.Appearance
    [Category("Attributes")]
    [Description("Controls the appearance of the data points.")]
    public Appearance Appearance {get; set;}
    Remarks
    The Appearance object controls the fill effects and line properties applied on the series data points
    Example
    The following example will display all bars of a bar chart in blue color with yellow border
    bar.Appearance.FillMode = AppearanceFillMode.Series
    bar.BarFillEffect.SetSolidColor(Color.Blue)
    bar.BarBorder.Color = Color.Yellow
    bar.Appearance.FillMode = AppearanceFillMode.Series;
    bar.BarFillEffect.SetSolidColor(Color.Blue);
    bar.BarBorder.Color = Color.Yellow;
    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