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

    Specifies whether the Sparkline component responds to user interaction.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(true)]
    [Parameter]
    public bool Enabled { get; set; }

    Property Value

    Type Default Description
    Boolean true

    false to disable the component; otherwise, true.

    Remarks

    Set the Enabled property to false to disable the Sparkline component. When disabled, the component ignores custom color settings and does not respond to user interaction.

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