Back to Devexpress

DxLegendSubtitleSettings Class

blazor-devexpress-dot-blazor-7f3be48c.md

latest4.0 KB
Original Source

DxLegendSubtitleSettings Class

Contains settings for the legend subtitle.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public class DxLegendSubtitleSettings :
    SubtitleBaseSettings

Remarks

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

DxBarGaugeLegendSettingsContains 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:

OffsetSpecifies the subtitle’s offset from the title.TextSpecifies 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:

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 };
}

Implements

IComponent

IHandleEvent

IHandleAfterRender

IDisposable

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

DxLegendSubtitleSettings Members

DevExpress.Blazor Namespace