-
Notifications
You must be signed in to change notification settings - Fork 1
Charts
Edgar Mesquita edited this page Feb 8, 2026
·
5 revisions
eQuantic.UI offers high-performance, reactive chart components wrapping the most popular JavaScript visualization libraries.
We provide wrappers for the two most dominant chart libraries in the web ecosystem:
- Type: HTML5 Canvas-based.
- Best for: Simple, clean, and lightweight charts.
- Support: Bar, Line, Pie, Doughnut, Radar, etc.
- Type: SVG-based.
- Best for: Highly interactive, modern, and complex visualizations.
- Support: Area, Bar, Line, Heatmap, Candlestick, etc.
dotnet add package eQuantic.UI.Charts.ApexChartsIn your Program.cs:
builder.Services.AddUI(options => {
options.AddApexCharts();
});new ApexChart<MyData>
{
Options = new ApexChartOptions
{
Chart = new Chart { Type = ChartType.Bar },
Series = new List<Series>
{
new Series { Name = "Sales", Data = dataList }
}
}
}new ChartJs<MyData>
{
Configuration = new ChartJsConfig
{
Type = "bar",
Data = new ChartJsData { ... }
}
}The chart system is designed for Reactive C# updates:
- Strongly Typed: Configuration and data use C# classes that mirror the JS API.
-
Unified Scripts:
CodeBlockScriptshandles the asset loading for chart libraries. - Zero Configuration: Components automatically inject required scripts/styles via the Asset Provider mechanism.
All chart components support full Tailwind CSS styling via ClassName and responsive containers.