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


In This Topic
    Settings Property (ChartControl)
    In This Topic
    Retrieves the chart settings related to rendering.
    Syntax
    'Declaration
     
    <CategoryAttribute("Xceed Chart for WinForms")>
    <DescriptionAttribute("Chart settings")>
    <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)>
    Public Property Settings As Settings
    'Usage
     
    Dim instance As ChartControl
    Dim value As Settings
     
    instance.Settings = value
     
    value = instance.Settings
    [Category("Xceed Chart for WinForms")]
    [Description("Chart settings")]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
    public Settings Settings {get; set;}
    Remarks
    With the help of the Settings object you can control various properties related to the chart rendering and appearance.
    Example
    The following example enables the jittering feature of the control.
    ' enable the antialiasing of the whole scene
    ChartControl.Settings.EnableJittering = True
    ChartControl.Settings.JitteringSteps = 4
    // enable the antialiasing of the whole scene
    ChartControl.Settings.EnableJittering = true;
    ChartControl.Settings.JitteringSteps = 4;
    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