diff --git a/src/FrontendApp/Data/MemoryReport.cs b/src/FrontendApp/Data/MemoryReport.cs
deleted file mode 100644
index 3c008e4..0000000
--- a/src/FrontendApp/Data/MemoryReport.cs
+++ /dev/null
@@ -1,7 +0,0 @@
-namespace Top;
-
- public class MemoryReport {
- public string Label { get; set; }
- public decimal Value { get; set; }
-}
-
diff --git a/src/FrontendApp/Pages/FetchData.razor b/src/FrontendApp/Pages/FetchData.razor
deleted file mode 100644
index 8d8c4f5..0000000
--- a/src/FrontendApp/Pages/FetchData.razor
+++ /dev/null
@@ -1,55 +0,0 @@
-@page "/fetchdata"
-@using System.Text.Json
-@using System.Text.Json.Serialization
-@inject IHttpClientFactory ClientFactory
-
-
-
-
- | User id |
- id |
- Title |
- Body |
-
-
-
- @foreach (var element in fakeDataList)
- {
-
- | @element.userId |
- @element.id |
- @element.title |
- @element.body |
-
- }
-
-
-
-
-@code {
-
- public class FakeData
-{
- public int userId { get; set; }
- public int id { get; set; }
- public string body { get; set; }
- public string title { get; set; }
-}
- public List fakeDataList = new List();
-
- protected override async Task OnInitializedAsync()
- {
- var request = new HttpRequestMessage(HttpMethod.Get, "https://jsonplaceholder.typicode.com/posts");
- var client = ClientFactory.CreateClient();
- var response = await client.SendAsync(request);
-
- if (response.IsSuccessStatusCode)
- {
- await using var responseStream = await
- response.Content.ReadAsStreamAsync();
- fakeDataList = await JsonSerializer.DeserializeAsync>(responseStream);
-
- }
-
- }
-}
\ No newline at end of file
diff --git a/src/FrontendApp/Pages/Index.razor b/src/FrontendApp/Pages/Index.razor
deleted file mode 100644
index e94519a..0000000
--- a/src/FrontendApp/Pages/Index.razor
+++ /dev/null
@@ -1,7 +0,0 @@
-@page "/"
-
-Panoptes - Home Page
-
-Welcome to Panoptes, a modular admin panel for developers
-
-
diff --git a/src/FrontendApp/Pages/ServerDiagnostics.razor b/src/FrontendApp/Pages/ServerDiagnostics.razor
deleted file mode 100644
index f1a3b83..0000000
--- a/src/FrontendApp/Pages/ServerDiagnostics.razor
+++ /dev/null
@@ -1,43 +0,0 @@
-@page "/diagnostics"
-@using System.Text.Json
-@using System.Text.Json.Serialization
-@using Top
-@inject IHttpClientFactory ClientFactory
-
-@* *@
-
-
-
-
-
-@code
-{
- public List report = new List();
-
- protected override async Task OnInitializedAsync()
- {
- var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:8080");
- var client = ClientFactory.CreateClient();
- var response = await client.SendAsync(request);
-
- if (response.IsSuccessStatusCode)
- {
- await using var responseStream = await
- response.Content.ReadAsStreamAsync();
-
- report = await JsonSerializer.DeserializeAsync>(responseStream);
- }
- }
-}
\ No newline at end of file
diff --git a/src/FrontendApp/Pages/_Host.cshtml b/src/FrontendApp/Pages/_Host.cshtml
deleted file mode 100644
index 91d99bd..0000000
--- a/src/FrontendApp/Pages/_Host.cshtml
+++ /dev/null
@@ -1,10 +0,0 @@
-@page "/"
-@namespace FrontendApp.Pages
-@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
-@{
- Layout = "_Layout";
-}
-
-
-
-
diff --git a/src/FrontendApp/bin/Debug/net6.0/Blazor-ApexCharts.dll b/src/FrontendApp/bin/Debug/net6.0/Blazor-ApexCharts.dll
deleted file mode 100644
index 7da3f18..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/Blazor-ApexCharts.dll and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/FrontendApp.deps.json b/src/FrontendApp/bin/Debug/net6.0/FrontendApp.deps.json
deleted file mode 100644
index bb91518..0000000
--- a/src/FrontendApp/bin/Debug/net6.0/FrontendApp.deps.json
+++ /dev/null
@@ -1,267 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v6.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v6.0": {
- "FrontendApp/1.0.0": {
- "dependencies": {
- "Blazor-ApexCharts": "0.9.17-beta",
- "System.Net.Http.Json": "3.2.1"
- },
- "runtime": {
- "FrontendApp.dll": {}
- }
- },
- "Blazor-ApexCharts/0.9.17-beta": {
- "dependencies": {
- "Microsoft.AspNetCore.Components": "6.0.3",
- "Microsoft.AspNetCore.Components.Web": "6.0.3"
- },
- "runtime": {
- "lib/net6.0/Blazor-ApexCharts.dll": {
- "assemblyVersion": "0.9.17.0",
- "fileVersion": "0.9.17.0"
- }
- }
- },
- "Microsoft.AspNetCore.Authorization/6.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Metadata": "6.0.3",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
- "Microsoft.Extensions.Options": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.322.12401"
- }
- }
- },
- "Microsoft.AspNetCore.Components/6.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authorization": "6.0.3",
- "Microsoft.AspNetCore.Components.Analyzers": "6.0.3"
- },
- "runtime": {
- "lib/net6.0/Microsoft.AspNetCore.Components.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.322.12401"
- }
- }
- },
- "Microsoft.AspNetCore.Components.Analyzers/6.0.3": {},
- "Microsoft.AspNetCore.Components.Forms/6.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Components": "6.0.3"
- },
- "runtime": {
- "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.322.12401"
- }
- }
- },
- "Microsoft.AspNetCore.Components.Web/6.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Components": "6.0.3",
- "Microsoft.AspNetCore.Components.Forms": "6.0.3",
- "Microsoft.Extensions.DependencyInjection": "6.0.0",
- "Microsoft.JSInterop": "6.0.3",
- "System.IO.Pipelines": "6.0.2"
- },
- "runtime": {
- "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.322.12401"
- }
- }
- },
- "Microsoft.AspNetCore.Metadata/6.0.3": {
- "runtime": {
- "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.322.12401"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/6.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
- "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.322.12309"
- }
- }
- },
- "Microsoft.Extensions.Options/6.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "Microsoft.Extensions.Primitives": "6.0.0"
- }
- },
- "Microsoft.Extensions.Primitives/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "Microsoft.JSInterop/6.0.3": {
- "runtime": {
- "lib/net6.0/Microsoft.JSInterop.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.322.12401"
- }
- }
- },
- "System.IO.Pipelines/6.0.2": {
- "runtime": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.222.6406"
- }
- }
- },
- "System.Net.Http.Json/3.2.1": {
- "dependencies": {
- "System.Text.Json": "4.7.2"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Text.Json/4.7.2": {}
- }
- },
- "libraries": {
- "FrontendApp/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Blazor-ApexCharts/0.9.17-beta": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+xSgeqDZ/nxiOgzxRoPgd6tPtOX7xQAzOX/FJULbJHts5+beV+Svxq1jENdTehzyJE7/EF5mulYIgStXWU6JLQ==",
- "path": "blazor-apexcharts/0.9.17-beta",
- "hashPath": "blazor-apexcharts.0.9.17-beta.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authorization/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eWgsWE7IY7Az2lGBvoYk20290ZqTI0Y9ATyprrwfaC7w8MvBXu2jU+tv90Zt6lbEE3RP55XL+dFydGExcunHbw==",
- "path": "microsoft.aspnetcore.authorization/6.0.3",
- "hashPath": "microsoft.aspnetcore.authorization.6.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Components/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Mqk/tAA+RWBnaz8uhn18VaEqVIY/G6LTpBX+Ap65/3vq4RwFZIDFK8gYMrV3JSQXkBYk3rYxPtwgEutCt4ZGww==",
- "path": "microsoft.aspnetcore.components/6.0.3",
- "hashPath": "microsoft.aspnetcore.components.6.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Components.Analyzers/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zM6GIzF9bAnjVhiXNFQ2viF7W9FPASHjiDmV53M+ArRKBS8LFvzTfC4sgGYDoaikxm+zdx9mH7x98I1Dh3/INQ==",
- "path": "microsoft.aspnetcore.components.analyzers/6.0.3",
- "hashPath": "microsoft.aspnetcore.components.analyzers.6.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Components.Forms/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bSGNnkAAzalMJl3Kv4HIOZ2sVeIc/+UopY27fO8v5Km9mS3jMzDiuCdvi4pXgnSsJj/bFjjO5KASd/KB9feFkw==",
- "path": "microsoft.aspnetcore.components.forms/6.0.3",
- "hashPath": "microsoft.aspnetcore.components.forms.6.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Components.Web/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-otsm2nj+nFPI1rGENDkbbDWWsdn4VKMa3nY6crAMzgXESIiaT0iLSWN3cC3yCUIarTsNJOz4nhT+z6/lkiqKEQ==",
- "path": "microsoft.aspnetcore.components.web/6.0.3",
- "hashPath": "microsoft.aspnetcore.components.web.6.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Metadata/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I3FVSfaLdSLs4XmBq5DbK7PuVF/aSf0Xc63/AeNIJFt6/chYvcJaxnKbd4yZo9OXGw5OT9KOIxGWZ/2CucvgJw==",
- "path": "microsoft.aspnetcore.metadata/6.0.3",
- "hashPath": "microsoft.aspnetcore.metadata.6.0.3.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
- "path": "microsoft.extensions.dependencyinjection/6.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
- "path": "microsoft.extensions.logging.abstractions/6.0.1",
- "hashPath": "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
- "path": "microsoft.extensions.options/6.0.0",
- "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
- "path": "microsoft.extensions.primitives/6.0.0",
- "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512"
- },
- "Microsoft.JSInterop/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3QCDEyxcjhfQQeGRGtJFP4F8ne4D6Gf2w1nkdQCRy79yzSGHcoUbBkziVVmoppRbipIh9ickyHD7wXB+m0GiIw==",
- "path": "microsoft.jsinterop/6.0.3",
- "hashPath": "microsoft.jsinterop.6.0.3.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cb5OfQjnz+zjpJJei+f3QYK7+wWZrDdNHf3DykO6QCacpNZ80tuNgq1DC2kqlrjfEu+cMUTvulxPIrCMbBkjqg==",
- "path": "system.io.pipelines/6.0.2",
- "hashPath": "system.io.pipelines.6.0.2.nupkg.sha512"
- },
- "System.Net.Http.Json/3.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KkevRTwX9uMYxuxG2/wSql8FIAItB89XT36zoh6hraQkFhf2yjotDswpAKzeuaEuMhAia6c50oZMkP1PJoYufQ==",
- "path": "system.net.http.json/3.2.1",
- "hashPath": "system.net.http.json.3.2.1.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
- },
- "System.Text.Json/4.7.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
- "path": "system.text.json/4.7.2",
- "hashPath": "system.text.json.4.7.2.nupkg.sha512"
- }
- }
-}
\ No newline at end of file
diff --git a/src/FrontendApp/bin/Debug/net6.0/FrontendApp.dll b/src/FrontendApp/bin/Debug/net6.0/FrontendApp.dll
deleted file mode 100644
index 73a8031..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/FrontendApp.dll and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/FrontendApp.pdb b/src/FrontendApp/bin/Debug/net6.0/FrontendApp.pdb
deleted file mode 100644
index b7ba5b1..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/FrontendApp.pdb and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/FrontendApp.staticwebassets.runtime.json b/src/FrontendApp/bin/Debug/net6.0/FrontendApp.staticwebassets.runtime.json
deleted file mode 100644
index de6ba64..0000000
--- a/src/FrontendApp/bin/Debug/net6.0/FrontendApp.staticwebassets.runtime.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["C:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\FrontendApp\\wwwroot\\","C:\\Users\\user\\.nuget\\packages\\blazor-apexcharts\\0.9.17-beta\\staticwebassets\\","C:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\FrontendApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"_content":{"Children":{"Blazor-ApexCharts":{"Children":{"css":{"Children":{"apexcharts.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/apexcharts.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"apex-charts.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/apex-charts.min.js"},"Patterns":null},"blazor-apex-charts.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/blazor-apex-charts.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"FrontendApp.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"FrontendApp.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll b/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll
deleted file mode 100644
index 5975a08..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll b/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll
deleted file mode 100644
index f7fcb84..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll b/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll
deleted file mode 100644
index 95cb31d..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll b/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll
deleted file mode 100644
index ec47640..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll b/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll
deleted file mode 100644
index 09bca3f..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/src/FrontendApp/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100644
index a42ea83..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/Microsoft.JSInterop.dll b/src/FrontendApp/bin/Debug/net6.0/Microsoft.JSInterop.dll
deleted file mode 100644
index 1562c29..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/Microsoft.JSInterop.dll and /dev/null differ
diff --git a/src/FrontendApp/bin/Debug/net6.0/System.IO.Pipelines.dll b/src/FrontendApp/bin/Debug/net6.0/System.IO.Pipelines.dll
deleted file mode 100644
index e978399..0000000
Binary files a/src/FrontendApp/bin/Debug/net6.0/System.IO.Pipelines.dll and /dev/null differ
diff --git a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.AssemblyInfoInputs.cache b/src/FrontendApp/obj/Debug/net6.0/FrontendApp.AssemblyInfoInputs.cache
deleted file mode 100644
index 90ccf27..0000000
--- a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-4ee1fc3ba864924757f727865fdc90a2fdd47c0c
diff --git a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.MvcApplicationPartsAssemblyInfo.cache b/src/FrontendApp/obj/Debug/net6.0/FrontendApp.MvcApplicationPartsAssemblyInfo.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.assets.cache b/src/FrontendApp/obj/Debug/net6.0/FrontendApp.assets.cache
deleted file mode 100644
index b0965ca..0000000
Binary files a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.assets.cache and /dev/null differ
diff --git a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.csproj.CopyComplete b/src/FrontendApp/obj/Debug/net6.0/FrontendApp.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.csproj.CoreCompileInputs.cache b/src/FrontendApp/obj/Debug/net6.0/FrontendApp.csproj.CoreCompileInputs.cache
deleted file mode 100644
index d51b997..0000000
--- a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-96e427778363ab82f437b0986992adf2b1a12265
diff --git a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.csproj.FileListAbsolute.txt b/src/FrontendApp/obj/Debug/net6.0/FrontendApp.csproj.FileListAbsolute.txt
deleted file mode 100644
index ce119db..0000000
--- a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.csproj.AssemblyReference.cache
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.AssemblyInfoInputs.cache
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.AssemblyInfo.cs
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.csproj.CoreCompileInputs.cache
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.MvcApplicationPartsAssemblyInfo.cache
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.RazorAssemblyInfo.cache
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.RazorAssemblyInfo.cs
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\appsettings.Development.json
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\appsettings.json
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\FrontendApp.staticwebassets.runtime.json
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\FrontendApp.exe
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\FrontendApp.deps.json
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\FrontendApp.runtimeconfig.json
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\FrontendApp.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\FrontendApp.pdb
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\staticwebassets.build.json
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\staticwebassets.development.json
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\scopedcss\Shared\NavMenu.razor.rz.scp.css
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\scopedcss\bundle\FrontendApp.styles.css
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\scopedcss\projectbundle\FrontendApp.bundle.scp.css
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\refint\FrontendApp.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.pdb
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.genruntimeconfig.cache
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\ref\FrontendApp.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\Blazor-ApexCharts.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\Microsoft.JSInterop.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\bin\Debug\net6.0\System.IO.Pipelines.dll
-C:\Users\user\Documents\Panoptes\2023-ca400-murphg62-byrnm257\src\FrontendApp\obj\Debug\net6.0\FrontendApp.csproj.CopyComplete
diff --git a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.dll b/src/FrontendApp/obj/Debug/net6.0/FrontendApp.dll
deleted file mode 100644
index 73a8031..0000000
Binary files a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.dll and /dev/null differ
diff --git a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.genruntimeconfig.cache b/src/FrontendApp/obj/Debug/net6.0/FrontendApp.genruntimeconfig.cache
deleted file mode 100644
index e346811..0000000
--- a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-834f8d67e1b901b39130031087c01a56b759c688
diff --git a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.pdb b/src/FrontendApp/obj/Debug/net6.0/FrontendApp.pdb
deleted file mode 100644
index b7ba5b1..0000000
Binary files a/src/FrontendApp/obj/Debug/net6.0/FrontendApp.pdb and /dev/null differ
diff --git a/src/FrontendApp/obj/Debug/net6.0/project.razor.json b/src/FrontendApp/obj/Debug/net6.0/project.razor.json
deleted file mode 100644
index 86e95d0..0000000
--- a/src/FrontendApp/obj/Debug/net6.0/project.razor.json
+++ /dev/null
@@ -1,21291 +0,0 @@
-{
- "SerializedFilePath": "c:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\FrontendApp\\obj\\Debug\\net6.0\\project.razor.json",
- "FilePath": "c:\\Users\\user\\Documents\\Panoptes\\2023-ca400-murphg62-byrnm257\\src\\FrontendApp\\FrontendApp.csproj",
- "Configuration": {
- "ConfigurationName": "MVC-3.0",
- "LanguageVersion": "6.0",
- "Extensions": [
- {
- "ExtensionName": "MVC-3.0"
- }
- ]
- },
- "ProjectWorkspaceState": {
- "TagHelpers": [
- {
- "HashCode": -937668965,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Pages.FetchData",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FetchData"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Pages.FetchData",
- "Common.TypeNamespace": "FrontendApp.Pages",
- "Common.TypeNameIdentifier": "FetchData"
- }
- },
- {
- "HashCode": 543149384,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Pages.FetchData",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FrontendApp.Pages.FetchData"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Pages.FetchData",
- "Common.TypeNamespace": "FrontendApp.Pages",
- "Common.TypeNameIdentifier": "FetchData",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": 656439525,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Pages.Index",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Index"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Pages.Index",
- "Common.TypeNamespace": "FrontendApp.Pages",
- "Common.TypeNameIdentifier": "Index"
- }
- },
- {
- "HashCode": 1218236986,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Pages.Index",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FrontendApp.Pages.Index"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Pages.Index",
- "Common.TypeNamespace": "FrontendApp.Pages",
- "Common.TypeNameIdentifier": "Index",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": 56453331,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Pages.ServerDiagnostics",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ServerDiagnostics"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Pages.ServerDiagnostics",
- "Common.TypeNamespace": "FrontendApp.Pages",
- "Common.TypeNameIdentifier": "ServerDiagnostics"
- }
- },
- {
- "HashCode": -1367924632,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Pages.ServerDiagnostics",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FrontendApp.Pages.ServerDiagnostics"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Pages.ServerDiagnostics",
- "Common.TypeNamespace": "FrontendApp.Pages",
- "Common.TypeNameIdentifier": "ServerDiagnostics",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": -731150814,
- "Kind": "Components.Component",
- "Name": "FrontendApp.App",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "App"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.App",
- "Common.TypeNamespace": "FrontendApp",
- "Common.TypeNameIdentifier": "App"
- }
- },
- {
- "HashCode": -128749850,
- "Kind": "Components.Component",
- "Name": "FrontendApp.App",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FrontendApp.App"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.App",
- "Common.TypeNamespace": "FrontendApp",
- "Common.TypeNameIdentifier": "App",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": 606102754,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Shared.SurveyPrompt",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "SurveyPrompt"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Title",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Title",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Shared.SurveyPrompt",
- "Common.TypeNamespace": "FrontendApp.Shared",
- "Common.TypeNameIdentifier": "SurveyPrompt"
- }
- },
- {
- "HashCode": -806225383,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Shared.SurveyPrompt",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FrontendApp.Shared.SurveyPrompt"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Title",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Title",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Shared.SurveyPrompt",
- "Common.TypeNamespace": "FrontendApp.Shared",
- "Common.TypeNameIdentifier": "SurveyPrompt",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": -1862372137,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Shared.MainLayout",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "MainLayout"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Body",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Body",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Shared.MainLayout",
- "Common.TypeNamespace": "FrontendApp.Shared",
- "Common.TypeNameIdentifier": "MainLayout"
- }
- },
- {
- "HashCode": -1555261982,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Shared.MainLayout",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FrontendApp.Shared.MainLayout"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Body",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Body",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Shared.MainLayout",
- "Common.TypeNamespace": "FrontendApp.Shared",
- "Common.TypeNameIdentifier": "MainLayout",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": -1136435452,
- "Kind": "Components.ChildContent",
- "Name": "FrontendApp.Shared.MainLayout.Body",
- "AssemblyName": "FrontendApp",
- "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Body",
- "ParentTag": "MainLayout"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.None",
- "Common.TypeName": "FrontendApp.Shared.MainLayout.Body",
- "Common.TypeNamespace": "FrontendApp.Shared",
- "Common.TypeNameIdentifier": "MainLayout",
- "Components.IsSpecialKind": "Components.ChildContent"
- }
- },
- {
- "HashCode": -516424819,
- "Kind": "Components.ChildContent",
- "Name": "FrontendApp.Shared.MainLayout.Body",
- "AssemblyName": "FrontendApp",
- "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Body",
- "ParentTag": "FrontendApp.Shared.MainLayout"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.None",
- "Common.TypeName": "FrontendApp.Shared.MainLayout.Body",
- "Common.TypeNamespace": "FrontendApp.Shared",
- "Common.TypeNameIdentifier": "MainLayout",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": 191600821,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Shared.NavMenu",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NavMenu"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Shared.NavMenu",
- "Common.TypeNamespace": "FrontendApp.Shared",
- "Common.TypeNameIdentifier": "NavMenu"
- }
- },
- {
- "HashCode": 1624135208,
- "Kind": "Components.Component",
- "Name": "FrontendApp.Shared.NavMenu",
- "AssemblyName": "FrontendApp",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FrontendApp.Shared.NavMenu"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "FrontendApp.Shared.NavMenu",
- "Common.TypeNamespace": "FrontendApp.Shared",
- "Common.TypeNameIdentifier": "NavMenu",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": -878436624,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexChart",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexChart"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexChart component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ApexPointTooltip",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>",
- "Metadata": {
- "Common.PropertyName": "ApexPointTooltip",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment>",
- "Components.ChildContent": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Options",
- "TypeName": "ApexCharts.ApexChartOptions",
- "Metadata": {
- "Common.PropertyName": "Options",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.ApexChartOptions",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Title",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Title",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XAxisType",
- "TypeName": "ApexCharts.XAxisType?",
- "Metadata": {
- "Common.PropertyName": "XAxisType",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.XAxisType?"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Debug",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "Debug",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Width",
- "TypeName": "System.Object",
- "Metadata": {
- "Common.PropertyName": "Width",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Height",
- "TypeName": "System.Object",
- "Metadata": {
- "Common.PropertyName": "Height",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnDataPointSelection",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnDataPointSelection",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnDataPointEnter",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnDataPointEnter",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnDataPointLeave",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnDataPointLeave",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnLegendClicked",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnLegendClicked",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnSelection",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnSelection",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnBrushScrolled",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnBrushScrolled",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnZoomed",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnZoomed",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnRendered",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Metadata": {
- "Common.PropertyName": "OnRendered",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "FormatYAxisLabel",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "FormatYAxisLabel",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexChart",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexChart",
- "Components.GenericTyped": "True"
- }
- },
- {
- "HashCode": 699117425,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexChart",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexCharts.ApexChart"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexChart component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ApexPointTooltip",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment>",
- "Metadata": {
- "Common.PropertyName": "ApexPointTooltip",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment>",
- "Components.ChildContent": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Options",
- "TypeName": "ApexCharts.ApexChartOptions",
- "Metadata": {
- "Common.PropertyName": "Options",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.ApexChartOptions",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Title",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Title",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XAxisType",
- "TypeName": "ApexCharts.XAxisType?",
- "Metadata": {
- "Common.PropertyName": "XAxisType",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.XAxisType?"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Debug",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "Debug",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Width",
- "TypeName": "System.Object",
- "Metadata": {
- "Common.PropertyName": "Width",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Height",
- "TypeName": "System.Object",
- "Metadata": {
- "Common.PropertyName": "Height",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnDataPointSelection",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnDataPointSelection",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnDataPointEnter",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnDataPointEnter",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnDataPointLeave",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnDataPointLeave",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnLegendClicked",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnLegendClicked",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnSelection",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnSelection",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnBrushScrolled",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnBrushScrolled",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnZoomed",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback>",
- "Metadata": {
- "Common.PropertyName": "OnZoomed",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback>",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OnRendered",
- "TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Metadata": {
- "Common.PropertyName": "OnRendered",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "FormatYAxisLabel",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "FormatYAxisLabel",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexChart",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexChart",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": -920771214,
- "Kind": "Components.ChildContent",
- "Name": "ApexCharts.ApexChart.ChildContent",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "ApexChart"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.None",
- "Common.TypeName": "ApexCharts.ApexChart.ChildContent",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexChart",
- "Components.IsSpecialKind": "Components.ChildContent"
- }
- },
- {
- "HashCode": -1952938374,
- "Kind": "Components.ChildContent",
- "Name": "ApexCharts.ApexChart.ChildContent",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "ApexCharts.ApexChart"
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.None",
- "Common.TypeName": "ApexCharts.ApexChart.ChildContent",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexChart",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": -797466890,
- "Kind": "Components.ChildContent",
- "Name": "ApexCharts.ApexChart.ApexPointTooltip",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexPointTooltip",
- "ParentTag": "ApexChart"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ApexPointTooltip' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.None",
- "Common.TypeName": "ApexCharts.ApexChart.ApexPointTooltip",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexChart",
- "Components.IsSpecialKind": "Components.ChildContent"
- }
- },
- {
- "HashCode": -974473442,
- "Kind": "Components.ChildContent",
- "Name": "ApexCharts.ApexChart.ApexPointTooltip",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexPointTooltip",
- "ParentTag": "ApexCharts.ApexChart"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ApexPointTooltip' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.None",
- "Common.TypeName": "ApexCharts.ApexChart.ApexPointTooltip",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexChart",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": 1109033769,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexGauge",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexGauge"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Title",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Title",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Percentage",
- "TypeName": "System.Decimal",
- "Metadata": {
- "Common.PropertyName": "Percentage",
- "Common.GloballyQualifiedTypeName": "global::System.Decimal"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Precentage",
- "TypeName": "System.Decimal",
- "Metadata": {
- "Common.PropertyName": "Precentage",
- "Common.GloballyQualifiedTypeName": "global::System.Decimal"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Label",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Label",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Options",
- "TypeName": "ApexCharts.ApexChartOptions",
- "Metadata": {
- "Common.PropertyName": "Options",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.ApexChartOptions"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexGauge",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexGauge"
- }
- },
- {
- "HashCode": 761545121,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexGauge",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexCharts.ApexGauge"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Title",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Title",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Percentage",
- "TypeName": "System.Decimal",
- "Metadata": {
- "Common.PropertyName": "Percentage",
- "Common.GloballyQualifiedTypeName": "global::System.Decimal"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Precentage",
- "TypeName": "System.Decimal",
- "Metadata": {
- "Common.PropertyName": "Precentage",
- "Common.GloballyQualifiedTypeName": "global::System.Decimal"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Label",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Label",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Options",
- "TypeName": "ApexCharts.ApexChartOptions",
- "Metadata": {
- "Common.PropertyName": "Options",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.ApexChartOptions"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexGauge",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexGauge",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": -1765275414,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexBoxPlotSeries",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexBoxPlotSeries"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexBoxPlotSeries component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Min",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Min",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Quantile1",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Quantile1",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Median",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Median",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Quantile3",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Quantile3",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Max",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Max",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderBy",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderBy",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderByDescending",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderByDescending",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "DataPointMutator",
- "TypeName": "System.Action>",
- "Metadata": {
- "Common.PropertyName": "DataPointMutator",
- "Common.GloballyQualifiedTypeName": "global::System.Action>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "XValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ShowDataLabels",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "ShowDataLabels",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.IEnumerable",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Stroke",
- "TypeName": "ApexCharts.SeriesStroke",
- "Metadata": {
- "Common.PropertyName": "Stroke",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Color",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Color",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "PointColor",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "PointColor",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexBoxPlotSeries",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexBoxPlotSeries",
- "Components.GenericTyped": "True"
- }
- },
- {
- "HashCode": 1658200345,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexBoxPlotSeries",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexCharts.ApexBoxPlotSeries"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexBoxPlotSeries component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Min",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Min",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Quantile1",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Quantile1",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Median",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Median",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Quantile3",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Quantile3",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Max",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Max",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderBy",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderBy",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderByDescending",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderByDescending",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "DataPointMutator",
- "TypeName": "System.Action>",
- "Metadata": {
- "Common.PropertyName": "DataPointMutator",
- "Common.GloballyQualifiedTypeName": "global::System.Action>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "XValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ShowDataLabels",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "ShowDataLabels",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.IEnumerable",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Stroke",
- "TypeName": "ApexCharts.SeriesStroke",
- "Metadata": {
- "Common.PropertyName": "Stroke",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Color",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Color",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "PointColor",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "PointColor",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexBoxPlotSeries",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexBoxPlotSeries",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": 1064255946,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexBubbleSeries",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexBubbleSeries"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexBubbleSeries component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "YAggregate",
- "TypeName": "System.Func, System.Decimal>",
- "Metadata": {
- "Common.PropertyName": "YAggregate",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ZAggregate",
- "TypeName": "System.Func, System.Decimal>",
- "Metadata": {
- "Common.PropertyName": "ZAggregate",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderBy",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderBy",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderByDescending",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderByDescending",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "DataPointMutator",
- "TypeName": "System.Action>",
- "Metadata": {
- "Common.PropertyName": "DataPointMutator",
- "Common.GloballyQualifiedTypeName": "global::System.Action>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "XValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ShowDataLabels",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "ShowDataLabels",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.IEnumerable",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Stroke",
- "TypeName": "ApexCharts.SeriesStroke",
- "Metadata": {
- "Common.PropertyName": "Stroke",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Color",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Color",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "PointColor",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "PointColor",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexBubbleSeries",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexBubbleSeries",
- "Components.GenericTyped": "True"
- }
- },
- {
- "HashCode": -1831426760,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexBubbleSeries",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexCharts.ApexBubbleSeries"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexBubbleSeries component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "YAggregate",
- "TypeName": "System.Func, System.Decimal>",
- "Metadata": {
- "Common.PropertyName": "YAggregate",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ZAggregate",
- "TypeName": "System.Func, System.Decimal>",
- "Metadata": {
- "Common.PropertyName": "ZAggregate",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderBy",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderBy",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderByDescending",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderByDescending",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "DataPointMutator",
- "TypeName": "System.Action>",
- "Metadata": {
- "Common.PropertyName": "DataPointMutator",
- "Common.GloballyQualifiedTypeName": "global::System.Action>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "XValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ShowDataLabels",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "ShowDataLabels",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.IEnumerable",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Stroke",
- "TypeName": "ApexCharts.SeriesStroke",
- "Metadata": {
- "Common.PropertyName": "Stroke",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Color",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Color",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "PointColor",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "PointColor",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexBubbleSeries",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexBubbleSeries",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": 1462706253,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexCandleSeries",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexCandleSeries"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexCandleSeries component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Open",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Open",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "High",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "High",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Low",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Low",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Close",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Close",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderBy",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderBy",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderByDescending",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderByDescending",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "DataPointMutator",
- "TypeName": "System.Action>",
- "Metadata": {
- "Common.PropertyName": "DataPointMutator",
- "Common.GloballyQualifiedTypeName": "global::System.Action>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "XValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ShowDataLabels",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "ShowDataLabels",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.IEnumerable",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Stroke",
- "TypeName": "ApexCharts.SeriesStroke",
- "Metadata": {
- "Common.PropertyName": "Stroke",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Color",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Color",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "PointColor",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "PointColor",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexCandleSeries",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexCandleSeries",
- "Components.GenericTyped": "True"
- }
- },
- {
- "HashCode": 1153555007,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexCandleSeries",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexCharts.ApexCandleSeries"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexCandleSeries component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Open",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Open",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "High",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "High",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Low",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Low",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Close",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "Close",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderBy",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderBy",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderByDescending",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderByDescending",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "DataPointMutator",
- "TypeName": "System.Action>",
- "Metadata": {
- "Common.PropertyName": "DataPointMutator",
- "Common.GloballyQualifiedTypeName": "global::System.Action>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "XValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ShowDataLabels",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "ShowDataLabels",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.IEnumerable",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Stroke",
- "TypeName": "ApexCharts.SeriesStroke",
- "Metadata": {
- "Common.PropertyName": "Stroke",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Color",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Color",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "PointColor",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "PointColor",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexCandleSeries",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexCandleSeries",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": 1161443316,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexPointSeries",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexPointSeries"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexPointSeries component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "YValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "YValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "YAggregate",
- "TypeName": "System.Func, System.Decimal?>",
- "Metadata": {
- "Common.PropertyName": "YAggregate",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal?>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderBy",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderBy",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderByDescending",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderByDescending",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "SeriesType",
- "TypeName": "ApexCharts.SeriesType",
- "IsEnum": true,
- "Metadata": {
- "Common.PropertyName": "SeriesType",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesType"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "DataPointMutator",
- "TypeName": "System.Action>",
- "Metadata": {
- "Common.PropertyName": "DataPointMutator",
- "Common.GloballyQualifiedTypeName": "global::System.Action>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "XValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ShowDataLabels",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "ShowDataLabels",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.IEnumerable",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Stroke",
- "TypeName": "ApexCharts.SeriesStroke",
- "Metadata": {
- "Common.PropertyName": "Stroke",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Color",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Color",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "PointColor",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "PointColor",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexPointSeries",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexPointSeries",
- "Components.GenericTyped": "True"
- }
- },
- {
- "HashCode": -2008183762,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexPointSeries",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexCharts.ApexPointSeries"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexPointSeries component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "YValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "YValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "YAggregate",
- "TypeName": "System.Func, System.Decimal?>",
- "Metadata": {
- "Common.PropertyName": "YAggregate",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Decimal?>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderBy",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderBy",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderByDescending",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderByDescending",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "SeriesType",
- "TypeName": "ApexCharts.SeriesType",
- "IsEnum": true,
- "Metadata": {
- "Common.PropertyName": "SeriesType",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesType"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "DataPointMutator",
- "TypeName": "System.Action>",
- "Metadata": {
- "Common.PropertyName": "DataPointMutator",
- "Common.GloballyQualifiedTypeName": "global::System.Action>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "XValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ShowDataLabels",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "ShowDataLabels",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.IEnumerable",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Stroke",
- "TypeName": "ApexCharts.SeriesStroke",
- "Metadata": {
- "Common.PropertyName": "Stroke",
- "Common.GloballyQualifiedTypeName": "global::ApexCharts.SeriesStroke"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Color",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Color",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "PointColor",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "PointColor",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Runtime.Name": "Components.IComponent",
- "Common.TypeName": "ApexCharts.ApexPointSeries",
- "Common.TypeNamespace": "ApexCharts",
- "Common.TypeNameIdentifier": "ApexPointSeries",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
- }
- },
- {
- "HashCode": 2048425152,
- "Kind": "Components.Component",
- "Name": "ApexCharts.ApexRangeSeries",
- "AssemblyName": "Blazor-ApexCharts",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ApexRangeSeries"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the ApexCharts.ApexRangeSeries component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False",
- "Component.TypeParameterConstraints": "where TItem : class"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "YValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "YValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderBy",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderBy",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "OrderByDescending",
- "TypeName": "System.Func, System.Object>",
- "Metadata": {
- "Common.PropertyName": "OrderByDescending",
- "Common.GloballyQualifiedTypeName": "global::System.Func, global::System.Object>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "YMinValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "YMinValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "YMaxValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "YMaxValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "DataPointMutator",
- "TypeName": "System.Action>",
- "Metadata": {
- "Common.PropertyName": "DataPointMutator",
- "Common.GloballyQualifiedTypeName": "global::System.Action>",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "XValue",
- "TypeName": "System.Func",
- "Metadata": {
- "Common.PropertyName": "XValue",
- "Common.GloballyQualifiedTypeName": "global::System.Func",
- "Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "False",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ShowDataLabels",
- "TypeName": "System.Boolean",
- "Metadata": {
- "Common.PropertyName": "ShowDataLabels",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.IEnumerable",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable