Back to Devexpress

TitleBaseSettings.PlaceholderSize Property

blazor-devexpress-dot-blazor-dot-base-dot-titlebasesettings.md

latest1.6 KB
Original Source

TitleBaseSettings.PlaceholderSize Property

Reserves an area for the title and its subtitle.

Namespace : DevExpress.Blazor.Base

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

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

Property Value

TypeDescription
Nullable<Int32>

The area height in pixels.

|

Remarks

The following code snippet changes the content area size for the title and subtitle 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"
                               PlaceholderSize="30">
            <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 };
}

See Also

TitleBaseSettings Class

TitleBaseSettings Members

DevExpress.Blazor.Base Namespace