corelibraries-devexpress-dot-xtracharts-dot-titlebase.md
Gets or sets a value indicating whether antialiasing is enabled for a chart title.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public DefaultBoolean EnableAntialiasing { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)>
Public Property EnableAntialiasing As DefaultBoolean
| Type | Description |
|---|---|
| DefaultBoolean |
The DefaultBoolean enumeration value.
|
Available values:
| Name | Description | Return Value |
|---|---|---|
| True |
The value is true.
|
0
| | False |
The value is false.
|
1
| | Default |
The value is specified by a global option or a higher-level object.
|
2
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the EnableAntialiasing property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-chart-create-and-customize-an-axis-title/CS/AxisTitle/Form1.cs#L38
diagram.AxisX.Title.TextColor = Color.Red;
diagram.AxisX.Title.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.True;
diagram.AxisX.Title.DXFont = new DXFont("Tahoma", 14, DXFontStyle.Bold);
winforms-chart-create-and-customize-chart-titles/CS/Form1.cs#L34
// Customize a title's appearance.
chartTitle1.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.True;
chartTitle1.DXFont = new DXFont("Tahoma", 14, DXFontStyle.Bold);
winforms-chart-create-and-customize-an-axis-title/VB/AxisTitle/Form1.vb#L37
diagram.AxisX.Title.TextColor = Color.Red
diagram.AxisX.Title.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.True
diagram.AxisX.Title.DXFont = New DXFont("Tahoma", 14, DXFontStyle.Bold)
winforms-chart-create-and-customize-a-constant-line/VB/ConstLines/Form1.vb#L46
constantLine1.Title.TextColor = Color.Red
constantLine1.Title.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False
constantLine1.Title.DXFont = New DXFont("Tahoma", 14, DXFontStyle.Bold)
winforms-chart-create-and-customize-chart-titles/VB/Form1.vb#L32
' Customize a title's appearance.
chartTitle1.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.True
chartTitle1.DXFont = New DXFont("Tahoma", 14, DXFontStyle.Bold)
See Also