Component Showcase
See what you can build with Arcadia Controls. Each section below shows a visual preview alongside the Razor code to create it.
Want the full interactive experience?
Revenue vs Target Last 12 months
Monthly Breakdown Q4 2025
Charts & Dashboards
Line, Bar, Pie, Scatter, Sparkline and more. Pure SVG rendering with animated transitions and full accessibility.
// Multi-series line chart
<ArcLineChart
Data="@salesData"
XField="@(d => d.Month)"
Series="@series"
ShowPoints="true"
Animate="true"
Height="300" />
Key Parameters
Data IEnumerable<T> data source for the chart Series List of series definitions with color and label XField Lambda expression for the X-axis value Animate Enable on-load SVG animations (respects prefers-reduced-motion) ShowPoints Render data point circles on the line Want the full interactive demo?
Run the demo app locally to try every component with live data, animations, and theme switching.
# Clone and run the interactive demo git clone https://github.com/helixuidev/arcadia.git cd arcadia dotnet run --project samples/Arcadia.Demo.Server