Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / Settings Class / EnableAntialiasing Property
Example


In This Topic
    EnableAntialiasing Property
    In This Topic
    Enables the antialising feature of the control.
    Syntax
    'Declaration
     
    <CategoryAttribute("General")>
    <DescriptionAttribute("Enables the antialising feature of the control.")>
    <DefaultValueAttribute(True)>
    Public Property EnableAntialiasing As Boolean
    'Usage
     
    Dim instance As Settings
    Dim value As Boolean
     
    instance.EnableAntialiasing = value
     
    value = instance.EnableAntialiasing
    [Category("General")]
    [Description("Enables the antialising feature of the control.")]
    [DefaultValue(true)]
    public bool EnableAntialiasing {get; set;}
    Remarks
    Xceed Chart for WinForms can antialias the lines and points rendered by the control. This property is true by default. You may wish to turn off the antialising to increase the performance.
    Example
    The following code disables the antialiasing:
    ChartControl.Settings.EnableAntialiasing = False
    ChartControl.Settings.EnableAntialiasing = false;
    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