Skip to main content
All docs
V24.1

DxBarGauge.Values Property

Specifies an array of values that contains bar gauge data.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public IEnumerable<double> Values { get; set; }

Property Value

Type Description
IEnumerable<Double>

A data source.

Remarks

Use the Values property to bind the Bar Gauge component to an IEnumerable<T> data source.

Bar Gauge - Scale Range

<DxBarGauge Width="100%"
            Height="500px"
            StartValue="-5"
            EndValue="5"
            Values="@Values">
    @* ... *@
</DxBarGauge>

@code {
    double[] Values = new double[] { -2.13, 1.48, -3.09, 4.52, 4.9, 3.9 };
    // ...
}
See Also