Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.
All docs
V24.1

DxFontSettings Class

Contains the element’s font settings.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

public class DxFontSettings :
    DxSettingsComponent<FontSettingsModel>

Remarks

Use DxFontSettings objects to customize font settings for the following components:

The following properties are available:

Color | Opacity
Specify the text color and its transparency.
Family | Weight
Specify font style settings.
Size
Specifies font size.

The following code snippet customizes font settings of the DxBarGauge title:

<DxBarGauge Width="100%"
            Height="500px"
            StartValue="0"
            EndValue="100"
            Values="@Values">
    @* ... *@
    <DxTitleSettings Text="Series Ratings">
        <DxFontSettings Color="purple" Opacity="0.8"
                        Size="28" Weight="600" />
    </DxTitleSettings>
</DxBarGauge>

@code {
    double[] Values = new double[] { 47.27, 65.32, 84.59, 81.86, 99 };
}

Inheritance

Object
ComponentBase
DxSettingsComponent<DevExpress.Blazor.ClientComponents.Internal.FontSettingsModel>
DxFontSettings
See Also