Skip to content

Commit d0d1e4e

Browse files
authored
feat(Chart): add Hidden parameter on ChartDataset (#829)
* feat(Chart): add Hidden parameter on ChartDataset * chore: bump version 10.0.1-beta01
1 parent c41c548 commit d0d1e4e

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

src/components/BootstrapBlazor.Chart/BootstrapBlazor.Chart.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

3+
<PropertyGroup>
4+
<Version>10.0.1-beta01</Version>
5+
</PropertyGroup>
36
<PropertyGroup>
47
<PackageTags>Bootstrap Blazor WebAssembly wasm UI Components Chart</PackageTags>
58
<Description>Bootstrap UI components extensions of Chart.js</Description>

src/components/BootstrapBlazor.Chart/Components/Chart/ChartDataset.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
1+
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

@@ -11,6 +11,11 @@ namespace BootstrapBlazor.Components;
1111
/// </summary>
1212
public class ChartDataset
1313
{
14+
/// <summary>
15+
/// 获得/设置 是否不显示 默认 false
16+
/// </summary>
17+
public bool Hidden { get; set; }
18+
1419
/// <summary>
1520
/// 获得/设置 数据集合名称
1621
/// </summary>

0 commit comments

Comments
 (0)