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


In This Topic
    Settings Property (ChartServerControl)
    In This Topic
    Retrieves the chart settings related to rendering.
    Syntax
    'Declaration
     
    <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
    <CategoryAttribute("Xceed Chart for ASP.NET")>
    <DescriptionAttribute("Retrieves the chart settings related to rendering.")>
    <BinarySerializationPropertyAttribute()>
    Public Property Settings As Settings
    'Usage
     
    Dim instance As ChartServerControl
    Dim value As Settings
     
    instance.Settings = value
     
    value = instance.Settings
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
    [Category("Xceed Chart for ASP.NET")]
    [Description("Retrieves the chart settings related to rendering.")]
    [BinarySerializationProperty()]
    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
    ChartServerControl1.Settings.EnableJittering = True
    ChartServerControl1.Settings.JitteringSteps = 4
    // enable the antialiasing of the whole scene
    ChartServerControl1.Settings.EnableJittering = true;
    ChartServerControl1.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