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


In This Topic
    Markers Class
    In This Topic
    Controls the appearance of the markers displayed for each data point by the associated series.
    Object Model
    Markers Class
    Syntax
    'Declaration
     
    <ClassInterfaceAttribute(ClassInterfaceType.AutoDual)>
    <TypeConverterAttribute(System.ComponentModel.ExpandableObjectConverter)>
    <SerializableAttribute()>
    Public Class Markers 
    'Usage
     
    Dim instance As Markers
    [ClassInterface(ClassInterfaceType.AutoDual)]
    [TypeConverter(System.ComponentModel.ExpandableObjectConverter)]
    [Serializable()]
    public class Markers 
    Remarks
    The user can obtain a reference to an instance of this class with the help of the Markers property of the Series class. By default the markers are not displayed. Note that not all series support markers.

    The following code obtains a reference to the instance of the Markers class associated with a line series.

    
    Dim markers As Markers =  lineSeries.Markers
    
    
    Markers markers = lineSeries.Markers;
    

    Inheritance Hierarchy

    System.Object
       Xceed.Chart.Core.Markers

    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