Nevron .NET Vision
Nevron.Chart.WebForm Namespace / NChartControl Class / Settings Property
Example


In This Topic
    Settings Property (NChartControl)
    In This Topic
    Gets the chart settings related to rendering.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("Nevron Chart for .NET")>
    <System.ComponentModel.DescriptionAttribute("Chart settings")>
    <System.ComponentModel.DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
    <System.Web.UI.PersistenceModeAttribute(PersistenceMode.InnerProperty)>
    Public Property Settings As NSettings
    'Usage
     
    
    Dim instance As NChartControl
    Dim value As NSettings
     
    instance.Settings = value
     
    value = instance.Settings
    [System.ComponentModel.Category("Nevron Chart for .NET")]
    [System.ComponentModel.Description("Chart settings")]
    [System.ComponentModel.DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
    [System.Web.UI.PersistenceMode(PersistenceMode.InnerProperty)]
    public NSettings Settings {get; set;}
    Remarks
    With the help of the NSettings 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
    NChartControl.Settings.EnableJittering = True
    NChartControl.Settings.JitteringSteps = 4
    // enable the antialiasing of the whole scene
    NChartControl.Settings.EnableJittering = true;
    NChartControl.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