Skip to main content
All docs
V25.1
  • DxLegendSubtitleSettings Class

    Contains settings for the legend subtitle.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    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

    <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