LegendBaseSettings<TComponent, TModel>.RowCount Property
In This Article
Arranges legend items into rows.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[DefaultValue(0)]
[Parameter]
public int RowCount { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Int32 | 0 | The number of rows. |
#Remarks
Use the RowCount
property to arrange legend items into rows. The property specifies the number of rows.
#Example
The following code snippet arranges items in the DxBarGauge legend into two rows:
Razor
<DxBarGauge Width="100%"
Height="500px"
StartValue="0"
EndValue="100"
Values="@Values">
<DxBarGaugeLegendSettings Visible="true"
ItemCaptions="@LegendItemCaptions"
RowCount="2"/>
@* ... *@
</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