Blazor-ApexTree
1.0.1
dotnet add package Blazor-ApexTree --version 1.0.1
NuGet\Install-Package Blazor-ApexTree -Version 1.0.1
<PackageReference Include="Blazor-ApexTree" Version="1.0.1" />
paket add Blazor-ApexTree --version 1.0.1
#r "nuget: Blazor-ApexTree, 1.0.1"
// Install Blazor-ApexTree as a Cake Addin #addin nuget:?package=Blazor-ApexTree&version=1.0.1 // Install Blazor-ApexTree as a Cake Tool #tool nuget:?package=Blazor-ApexTree&version=1.0.1
Blazor-ApexTree
Getting Started
This library provides a blazor wrapper for ApexTree.js.
Usage is quite simple, just install the package and then create any <ApexTree />
components as desired. You will need to provide data in the Parent
parameter; all children must be nested within this. Setting the Id
property on nodes is highly recommended for everything to work correctly and just needs to be a unique value (using Guid.NewGuid().ToHtmlId().ToString("N")
would work well).
There are two types for TItem
that have full support built in; otherwise you need to provide a value for NodeTemplate
in the options for the component. The supported types are string?
and ApexTree.Image
; using either of these types will produce a tree that looks very similar to the official JavaScript examples.
Installation
To use this library:
- Clone a copy of the repository
- Reference the NuGet package
Build Details
Frameworks
- .NET 8.0
Authors
- NF Software Inc.
License
This project is licensed under the MIT License - see the LICENSE file for details
Acknowledgments
Thank you to:
- joadan for the fantastic Blazor-ApexCharts project
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net8.0
- Microsoft.AspNetCore.Components.Web (>= 8.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1.0.1 Fix issue where chart gets created twice and Add RebuildChart method
1.0.0 Initial release