Skip to content

Commit

Permalink
Merge pull request #365 from apexcharts/add-hide-empty-series
Browse files Browse the repository at this point in the history
Added Tooltip property HideEmptySeries
  • Loading branch information
joadan authored Dec 20, 2023
2 parents 33d2d69 + 90584be commit d9a4178
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Blazor-ApexCharts/Models/ApexChartOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4025,8 +4025,9 @@ public class TitleStyle
/// </remarks>
public class Tooltip
{

public bool? HideEmptyShared { get; set; }
public bool? HideEmptySeries { get; set; }

Check warning on line 4028 in src/Blazor-ApexCharts/Models/ApexChartOptions.cs

View workflow job for this annotation

GitHub Actions / build-and-deploy

Missing XML comment for publicly visible type or member 'Tooltip.HideEmptySeries'

Check warning on line 4028 in src/Blazor-ApexCharts/Models/ApexChartOptions.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'Tooltip.HideEmptySeries'

Check warning on line 4028 in src/Blazor-ApexCharts/Models/ApexChartOptions.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'Tooltip.HideEmptySeries'

Check warning on line 4028 in src/Blazor-ApexCharts/Models/ApexChartOptions.cs

View workflow job for this annotation

GitHub Actions / Create Release

Missing XML comment for publicly visible type or member 'Tooltip.HideEmptySeries'

public bool? HideEmptyShared { get; set; }

Check warning on line 4030 in src/Blazor-ApexCharts/Models/ApexChartOptions.cs

View workflow job for this annotation

GitHub Actions / build-and-deploy

Missing XML comment for publicly visible type or member 'Tooltip.HideEmptyShared'

Check warning on line 4030 in src/Blazor-ApexCharts/Models/ApexChartOptions.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'Tooltip.HideEmptyShared'

Check warning on line 4030 in src/Blazor-ApexCharts/Models/ApexChartOptions.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'Tooltip.HideEmptyShared'

Check warning on line 4030 in src/Blazor-ApexCharts/Models/ApexChartOptions.cs

View workflow job for this annotation

GitHub Actions / Create Release

Missing XML comment for publicly visible type or member 'Tooltip.HideEmptyShared'

/// <inheritdoc cref="ApexCharts.CustomFunction"/>
/// <summary>
Expand Down

0 comments on commit d9a4178

Please sign in to comment.