· 8 min read

Free Blazor Circular Gauge Component — Responsive, Accessible, Zero JavaScript

Build enterprise-grade dashboard gauges in Blazor with Arcadia's free circular gauge component. Pure SVG, color thresholds, full-circle mode, and WCAG 2.1 AA accessibility. Works in Server, WebAssembly, and Auto render modes.

blazorgaugecircular gaugedashboardfreec#

Free Blazor Circular Gauge Component

Looking for a responsive circular gauge in Blazor? Arcadia Controls includes a free, enterprise-grade circular gauge component that renders pure SVG — no JavaScript, no canvas, no external dependencies.

Why Another Gauge Component?

Most Blazor gauge components fall into two categories:

  1. JavaScript wrappers (Syncfusion, Telerik) — heavy bundle size, JS hydration flash on Server, $$$ licensing
  2. Basic SVG (MudBlazor) — limited customization, no thresholds, no animation

Arcadia’s gauge is different: pure C# rendering to SVG, color thresholds, full-circle and semi-circular modes, smooth animation, and WCAG 2.1 AA accessibility — all in the free MIT-licensed Community Edition.

Quick Start (2 Minutes)

dotnet add package Arcadia.Charts
dotnet add package Arcadia.Theme

Add CSS to your App.razor:

<link href="_content/Arcadia.Theme/css/arcadia.css" rel="stylesheet" />
<link href="_content/Arcadia.Charts/css/arcadia-charts.css" rel="stylesheet" />

Drop in a gauge:

@using Arcadia.Charts.Components.Charts

<ArcadiaGaugeChart Value="73" Min="0" Max="100"
                 Label="CPU Usage" Width="200" Height="160" />

That’s it. No JavaScript imports, no npm, no webpack.

Circular Gauge (Full 360°)

For scores, ratings, and completion rings:

<ArcadiaGaugeChart Value="850" Min="300" Max="900"
                 Label="Credit Score" FullCircle="true"
                 Width="180" Height="180" />

Color Thresholds

The gauge automatically changes color based on value ranges — green for good, yellow for warning, red for critical:

@code {
    var thresholds = new List<GaugeThreshold>
    {
        new() { Value = 0, Color = "var(--arcadia-color-success)" },
        new() { Value = 60, Color = "var(--arcadia-color-warning)" },
        new() { Value = 85, Color = "var(--arcadia-color-danger)" },
    };
}

<ArcadiaGaugeChart Value="73" Thresholds="@thresholds"
                 Label="Memory" Width="200" Height="160" />

How It Compares

ArcadiaSyncfusionTelerikMudBlazor
PriceFree (MIT)$995+/year$999+/yearFree (MIT)
Bundle~120 KB total~3 MB~4 MB~2 MB
JavaScript0 KBRequiredRequiredModerate
Circular modeYesYesYesNo
Color thresholdsYesYesYesNo
AnimationYesYesYesNo
SSRFull SVGJS hydrationJS hydrationBasic SVG
WCAG AAYesPartialPartialNo

Features

Dashboard Example

Combine gauges with KPI cards and sparklines for a complete dashboard:

<div style="display: flex; gap: 24px;">
    <ArcadiaGaugeChart Value="68" Label="Progress" FullCircle="true"
                     Width="160" Height="160" Thresholds="@thresholds" />
    <ArcadiaKpiCard Title="Revenue" Value="$142K" Delta="+12.3%"
                   DeltaType="DeltaType.Increase" />
    <ArcadiaSparkline Data="@sparkData" Color="success" ShowArea="true" />
</div>

Try It

dotnet add package Arcadia.Charts

The gauge is free in the Community Edition. No Pro license needed, no watermark, no feature gating.

Ready to try Arcadia?

Start with the free Community edition — 4 chart types, sparklines, notifications, and a full theme engine.