Back to Devexpress

LegendBaseSettings<TComponent, TModel>.MarkerSize Property

blazor-devexpress-dot-blazor-dot-base-dot-legendbasesettings-2-2b47231b.md

latest1.5 KB
Original Source

LegendBaseSettings<TComponent, TModel>.MarkerSize Property

Specifies the size of legend item markers.

Namespace : DevExpress.Blazor.Base

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(20)]
[Parameter]
public int MarkerSize { get; set; }

Property Value

TypeDefaultDescription
Int3220

The marker size in pixels.

|

Remarks

The following code snippet changes the size of item markers in the DxBarGauge legend:

razor
<DxBarGauge Width="50%"
            Height="500px"
            StartValue="0"
            EndValue="100"
            Values="@Values">
    <DxBarGaugeLegendSettings Visible="true"
                              ItemCaptions="@LegendItemCaptions"
                              MarkerSize="10"/>
    @* ... *@
</DxBarGauge>

@code {
    double[] Values = new double[] { 47.27, 65.32, 84.59, 81.86, 99 };
    string[] LegendItemCaptions = new string[] { "Metacritic", "Ratingraph.com", "Rotten Tomatoes", "IMDb", "TV.com" };
}

See Also

LegendBaseSettings<TComponent, TModel> Class

LegendBaseSettings<TComponent, TModel> Members

DevExpress.Blazor.Base Namespace