Xceed Chart for WinForms v4.4 Documentation
Settings Property (ChartControl)
Example 


Xceed.Chart.v4.4 Assembly > Xceed.Chart Namespace > ChartControl Class : Settings Property
Retrieves the chart settings related to rendering.
Syntax
'Declaration
 
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)>
<DescriptionAttribute("Chart settings")>
<CategoryAttribute("Xceed Chart for .NET")>
Public Property Settings As Settings
'Usage
 
Dim instance As ChartControl
Dim value As Settings
 
instance.Settings = value
 
value = instance.Settings
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
[Description("Chart settings")]
[Category("Xceed Chart for .NET")]
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

Reference

ChartControl Class
ChartControl Members