Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / Appearance Class
Members


In This Topic
    Appearance Class
    In This Topic
    Controls the fill effects and line properties applied on the data points displayed by the associated series.
    Object Model
    Appearance Class
    Syntax
    'Declaration
     
    <ClassInterfaceAttribute(ClassInterfaceType.AutoDual)>
    <TypeConverterAttribute(Xceed.Chart.Core.AppearanceConverter)>
    <SerializableAttribute()>
    Public Class Appearance 
    'Usage
     
    Dim instance As Appearance
    [ClassInterface(ClassInterfaceType.AutoDual)]
    [TypeConverter(Xceed.Chart.Core.AppearanceConverter)]
    [Serializable()]
    public class Appearance 
    Remarks
    The user can obtain a reference to an instance of this class with the help of the Appearance property of the Series class. By default the filling and line modes are set to Series, which means that the data points are displayed with fill effect and line properties determined by the associated series.

    The following code obtains a reference to the instance of the Appearance class associated with a bar series.

    
    Dim appearance As Appearance =  barseries.Appearance
    
    
    Appearance appearance = barseries.Appearance;
    

    Inheritance Hierarchy

    System.Object
       Xceed.Chart.Core.Appearance

    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