8 references to Min
Aspire.Dashboard (7)
Components\Controls\AspireProgressRing.razor.cs (7)
64private double EffectiveValue => Max > Min ? Math.Clamp(Value ?? Min, Min, Max) : Min; 66private double Progress => Max > Min ? (EffectiveValue - Min) / (Max - Min) : 0;
Aspire.Dashboard.Components.Tests (1)
Controls\AspireProgressRingTests.cs (1)
35.Add(p => p.Min, 10)