Skip to content

Commit dba3f16

Browse files
committed
Add support table for tech stack in documentation and update version to 1.2.2
1 parent 83b67a7 commit dba3f16

5 files changed

Lines changed: 88 additions & 3 deletions

File tree

BlazorExpress.ChartJS.Demo.RCL/Pages/Docs/GettingStarted/GettingStartedDocumentation.razor

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,39 @@
1010
</SubTitleTemplate>
1111
</PageHero>
1212

13+
<div class="table-container">
14+
<table class="table is-bordered is-striped is-fullwidth">
15+
<thead>
16+
<tr>
17+
<th>BlazorExpress.ChartJS</th>
18+
<th>.NET</th>
19+
<th>Chart.js</th>
20+
<th>chartjs-plugin-datalabels</th>
21+
</tr>
22+
</thead>
23+
<tbody>
24+
<tr>
25+
<td>1.2.2</td>
26+
<td>8, 9, 10</td>
27+
<td>4.4.1</td>
28+
<td>2.2.0</td>
29+
</tr>
30+
<tr>
31+
<td>1.1.0+</td>
32+
<td>8</td>
33+
<td>4.4.1</td>
34+
<td>2.2.0</td>
35+
</tr>
36+
<tr>
37+
<td>1.0.0</td>
38+
<td>8</td>
39+
<td>4.0.1</td>
40+
<td>2.2.0</td>
41+
</tr>
42+
</tbody>
43+
</table>
44+
</div>
45+
1346
<div class="table-container">
1447
<table class="table">
1548
<thead>
@@ -54,7 +87,7 @@
5487
private const string pageUrl2 = DemoRouteConstants.Docs_Prefix;
5588
private const string pageTitle = "Getting started with BlazorExpress.ChartJS";
5689
private const string pageDescription = "Explore practical Blazor ChartJS demos with step-by-step examples. Learn how to create interactive charts in your Blazor projects.";
57-
private const string metaTitle = "Blazor ChartJS Demo Getting Started with Interactive Chart Examples";
90+
private const string metaTitle = "Blazor ChartJS Demo Getting Started with Interactive Chart Examples";
5891
private const string metaDescription = "Explore practical Blazor ChartJS demos with step-by-step examples. Learn how to create interactive charts in your Blazor projects.";
5992
private const string imageUrl = "https://i.imgur.com/IX3bajc.png"; // TODO: update with the actual image URL for the Bar Chart demo
6093
}

BlazorExpress.ChartJS.Demo.RCL/Pages/Home/Index.razor

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,42 @@
3939
<DoYouKnow />
4040

4141
<StarOnGitHub />
42+
43+
<div class="mt-6">
44+
<h3 class="title is-4">Supported Tech Stack</h3>
45+
<div class="table-container">
46+
<table class="table is-bordered is-striped is-fullwidth">
47+
<thead>
48+
<tr>
49+
<th>BlazorExpress.ChartJS</th>
50+
<th>.NET</th>
51+
<th>Chart.js</th>
52+
<th>chartjs-plugin-datalabels</th>
53+
</tr>
54+
</thead>
55+
<tbody>
56+
<tr>
57+
<td>1.2.2</td>
58+
<td>8, 9, 10</td>
59+
<td>4.4.1</td>
60+
<td>2.2.0</td>
61+
</tr>
62+
<tr>
63+
<td>1.1.0+</td>
64+
<td>8</td>
65+
<td>4.4.1</td>
66+
<td>2.2.0</td>
67+
</tr>
68+
<tr>
69+
<td>1.0.0</td>
70+
<td>8</td>
71+
<td>4.0.1</td>
72+
<td>2.2.0</td>
73+
</tr>
74+
</tbody>
75+
</table>
76+
</div>
77+
</div>
4278
</div>
4379

4480
@code {

BlazorExpress.ChartJS.Demo.WebAssembly/wwwroot/appsettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"version": "1.2.1",
2+
"version": "1.2.2",
33
"release": {
4-
"short_description": "Adds BarChart styling, LineChart features, and improved docs."
4+
"short_description": "Adds combo bar/line charts and updates installation snippets to v1.2.2."
55
},
66
"NugetPackageName": "BlazorExpress.ChartJS",
77
"NugetPackageDisplayName": "BlazorExpress ChartJS",

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,11 @@ More components coming...
101101
## Copyright and license
102102

103103
Code and documentation copyright 2026 [Blazor Express](https://blazorexpress.com/) Code released under the [Apache-2.0 License](https://github.com/BlazorExpress/BlazorExpress.ChartJS/blob/main/LICENSE).
104+
105+
## Supported Tech Stack
106+
107+
| BlazorExpress.ChartJS | .NET | Chart.js | chartjs-plugin-datalabels |
108+
|:--|:--|:--|:--|
109+
| 1.2.2 | 8, 9, 10 | 4.4.1 | 2.2.0 |
110+
| 1.1.0+ | 8 | 4.4.1 | 2.2.0 |
111+
| 1.0.0 | 8 | 4.0.1 | 2.2.0 |

nuget/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,11 @@ More components coming...
4343
## Copyright and license
4444

4545
Code and documentation copyright 2026 [Blazor Express](https://blazorexpress.com/) Code released under the [Apache-2.0 License](https://github.com/BlazorExpress/BlazorExpress.ChartJS/blob/main/LICENSE).
46+
47+
## Supported Tech Stack
48+
49+
| BlazorExpress.ChartJS | .NET | Chart.js | chartjs-plugin-datalabels |
50+
|:--|:--|:--|:--|
51+
| 1.2.2 | 8, 9, 10 | 4.4.1 | 2.2.0 |
52+
| 1.1.0+ | 8 | 4.4.1 | 2.2.0 |
53+
| 1.0.0 | 8 | 4.0.1 | 2.2.0 |

0 commit comments

Comments
 (0)