Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxLegendSubtitleSettings Class

Contains settings for the legend subtitle.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
public class DxLegendSubtitleSettings :
    SubtitleBaseSettings

#Remarks

Use DxLegendSubtitleSettings objects to configure subtitle settings for the following components:

DxBarGaugeLegendSettings
Contains settings for the Bar Gauge‘s legend.
Show Nested Component Structure

To create a legend subtitle, add a DxLegendSubtitleSettings object to DxLegendTitleSettings component markup.

The DxLegendSubtitleSettings component allows you to specify the following properties at the component level:

Offset
Specifies the subtitle’s offset from the title.
Text
Specifies subtitle text.

You can also add a DxFontSettings object to subtitle markup to configure the subtitle’s font settings.

The following code snippet customizes the legend’s title and subtitle in the DxBarGauge component:

Bar Gauge - Legend Title and Subtitle Settings

Razor
<DxBarGauge Width="30%"
            Height="200px"
            StartValue="-5"
            EndValue="5"
            BaseValue="0"
            Values="@Values">
    <DxBarGaugeLegendSettings Visible="true">
        <DxLegendTitleSettings Text="Legend Title"
                               HorizontalAlignment="HorizontalAlignment.Right">
            <DxFontSettings Color="purple" />
            <DxMarginSettings Bottom="10" />
            <DxLegendSubtitleSettings Text="Legend Subtitle">
                <DxFontSettings Color="orange" />
            </DxLegendSubtitleSettings>
        </DxLegendTitleSettings>
    </DxBarGaugeLegendSettings>
</DxBarGauge>

@code {
    double[] Values = new double[] { -2.13, 1.48, -3.09, 4.52, 4.9, 3.9 };
}

#Inheritance

Object
ComponentBase
DxSettingsComponent<DevExpress.Blazor.ClientComponents.Internal.SubtitleSettingsModel>
DxComplexSettingsComponent<SubtitleBaseSettings, DevExpress.Blazor.ClientComponents.Internal.SubtitleSettingsModel>
TextBaseSettings<SubtitleBaseSettings, DevExpress.Blazor.ClientComponents.Internal.SubtitleSettingsModel>
SubtitleBaseSettings
DxLegendSubtitleSettings
See Also