Skip to main content
All docs
V25.1
  • DxSparkline.Height Property

    Specifies the component height.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public string Height { get; set; }

    Property Value

    Type Description
    String

    The height in CSS units.

    Remarks

    Use Height and Width properties to specify the size of the DxSparkline component.

    <DxSparkline Data="@DataSource"
                 Type="SparklineType.Bar"
                 ArgumentFieldName="Month"
                 ValueFieldName="VisitorCount"
                 Height="10%"
                 Width="200px" />
    
    @code {
        IEnumerable<SparklineDataPoint> DataSource = Enumerable.Empty<SparklineDataPoint>();
        protected override void OnInitialized() {
            DataSource = GenerateData();
        }
    }
    
    See Also