Back to Devexpress

SubtitleBaseSettings.Offset Property

blazor-devexpress-dot-blazor-dot-base-dot-subtitlebasesettings.md

latest1.7 KB
Original Source

SubtitleBaseSettings.Offset Property

Specifies the vertical subtitle offset from the title.

Namespace : DevExpress.Blazor.Base

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[Parameter]
public int? Offset { get; set; }

Property Value

TypeDescription
Nullable<Int32>

The offset in pixels.

|

Remarks

The following code snippet shifts the subtitle vertically from the title in the DxBarGauge legend:

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" />
            <DxLegendSubtitleSettings Text="Legend Subtitle"
                                      Offset="10" >
                <DxFontSettings Color="orange" />
            </DxLegendSubtitleSettings>
        </DxLegendTitleSettings>
    </DxBarGaugeLegendSettings>
</DxBarGauge>

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

See Also

SubtitleBaseSettings Class

SubtitleBaseSettings Members

DevExpress.Blazor.Base Namespace