VOOZH about

URL: https://www.nuget.org/packages/Blazor-ApexCharts/3.5.0

⇱ NuGet Gallery | Blazor-ApexCharts 3.5.0




👁 Image
Blazor-ApexCharts 3.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Blazor-ApexCharts --version 3.5.0
 
 
NuGet\Install-Package Blazor-ApexCharts -Version 3.5.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Blazor-ApexCharts" Version="3.5.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Blazor-ApexCharts" Version="3.5.0" />
 
Directory.Packages.props
<PackageReference Include="Blazor-ApexCharts" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Blazor-ApexCharts --version 3.5.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Blazor-ApexCharts, 3.5.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Blazor-ApexCharts@3.5.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Blazor-ApexCharts&version=3.5.0
 
Install as a Cake Addin
#tool nuget:?package=Blazor-ApexCharts&version=3.5.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

👁 .NET Core

Blazor-ApexCharts

A blazor wrapper for ApexCharts.js

Demo

v2.0 Released to production!

It's no longer necessary to manually include javascript files. Please REMOVE any references to:

<script src="_content/Blazor-ApexCharts/js/apex-charts.min.js"></script>
<script src="_content/Blazor-ApexCharts/js/blazor-apex-charts.js"></script>

As of version 2.0 javascript interop on WASM is running synchronously for better performance.

Installation

NuGet

Blazor-ApexCharts

dotnet add package Blazor-ApexCharts

Usage

Imports

Add a reference to Blazor-ApexCharts in your _Imports.razor

@using ApexCharts

.NET 8

If you are on .NET 8 you need to set the rendermode to Interactive.

Interactive Server, Interactive WebAssembly or Interactive Auto

Your first chart

 <ApexChart TItem="MyData"
 Title="Sample Data">

 <ApexPointSeries TItem="MyData"
 Items="Data"
 Name="Net Profit"
 SeriesType="SeriesType.Bar"
 XValue="e => e.Category"
 YValue="e=> e.NetProfit" />

 <ApexPointSeries TItem="MyData"
 Items="Data"
 Name="Revenue"
 SeriesType="SeriesType.Bar"
 XValue="e => e.Category"
 YValue="e=> e.Revenue" />
 </ApexChart>
 
@code {
 private List<MyData> Data { get; set; } = new();
 protected override void OnInitialized()
 {
 Data.Add(new MyData { Category = "Jan", NetProfit = 12, Revenue = 33 });
 Data.Add(new MyData { Category = "Feb", NetProfit = 43, Revenue = 42 });
 Data.Add(new MyData { Category = "Mar", NetProfit = 112, Revenue = 23 });
 }

 public class MyData
 {
 public string Category { get; set; }
 public int NetProfit { get; set; }
 public int Revenue { get; set; }
 }
}

Chart Options

Apex Chart options are available in the ApexChartOptions class that can be passed to the chart. More info in Apex documentation ApexCharts Docs.

The chart options cannot be shared. Each chart instance must have its own ApexChartOptions instance

Acknowledgments

Credits to @thirstyape for making production release possible.

Product Versions Compatible and additional computed target framework versions.
.NET net6.0 net6.0 is compatible.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 is compatible.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (17)

Showing the top 5 NuGet packages that depend on Blazor-ApexCharts:

Package Downloads
Hedin.UI

A custom razor (Blazor) component library built by and to be used by Hedin IT.

CodeBlock.DevKit.Web.Blazor.Server

CodeBlock Development Kit

Empezar.BlazorWebClient

Package Description

Cayaqui.MPS.Components

Design system and EVM/EPC reusable components (KPI strip, gauges CPI/SPI/PF, S-curves, Gantt, WBS tree grid, R9C, risk heatmap, change orders, purchase orders, engineering deliverables, lookahead grid) for .NET 10 Blazor WebApp (Interactive Server) on top of Syncfusion.Blazor. Proprietary — requires a commercial agreement with Cayaqui.

Fun.Blazor.ApexCharts

Package Description

GitHub repositories (7)

Showing the top 7 popular GitHub repositories that depend on Blazor-ApexCharts:

Repository Stars
TheAxelander/OpenBudgeteer
OpenBudgeteer is a budgeting app based on the Bucket Budgeting Principle
Ozark-Connect/NetworkOptimizer
Self-hosted optimization, monitoring, and security audit tool for UniFi Networks. Includes Wi-Fi Optimizer for wireless health scoring and channel optimization, advanced DNS/VLAN/firewall security checks, config optimization suggestions, centralized WAN and LAN speed test server w/ L2 tracing, ONT, SFP, UniFi 5G modem stats, and more.​​​​​​​​​​​​​​
TabBlazor/TabBlazor
Blazor admin template based on Tabler UI
Sidekick-Poe/Sidekick
The main repository for the Sidekick project, a companion trade tool for Path of Exile and Path of Exile 2.
neozhu/visitormanagement
helps in managing visitors visiting the institutions for various reasons. It allows visitors to check-in digitally to eliminate the tedious registeration and other paperwork. Additionally, it also keeps a track of every individual inside the campus and their timings. Institutions has guards who enter their detail in some notebooks to keep a log which are practically impossible to reconcile. It is really unpleasent and hectic for visitor to stand at the gate and give details about the visit. To ease the process of registeration, Entry-In, Entry-Out, time tracking and logging the history, this VMS can be of great use!!
dotnet/nuget-trends
Check out NuGet packages adoption and what's trending on NuGet.
pkuehnel/TeslaSolarCharger
A software to let your Tesla charge with solar energy ☀
Version Downloads Last Updated
6.1.0 428,487 1/17/2026
6.0.2 339,452 8/22/2025
6.0.1 199,748 5/21/2025
6.0.0 89,352 4/28/2025
5.1.0 266,130 2/4/2025
5.0.1 76,075 1/8/2025
5.0.0 16,981 12/27/2024
4.0.1 78,474 11/19/2024
4.0.0 89,203 11/9/2024
3.5.0 126,035 10/8/2024
3.4.0 196,850 7/15/2024
3.3.0 143,246 4/28/2024
3.2.0 44,039 4/7/2024
3.1.0 67,944 3/4/2024
3.0.0 2,442 3/4/2024
2.3.3 63,394 2/9/2024
2.3.2 1,641 2/7/2024
2.3.1 8,811 2/4/2024
2.3.0 18,983 2/1/2024
2.2.1 51,764 12/20/2023
Loading failed