Skip to content

Commit

Permalink
Add explicit new keyword to hidden properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Joelius300 committed Oct 16, 2020
1 parent 67bc8ee commit e4b493a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ChartJs.Blazor/Common/Axes/Ticks/CategoryTicks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ public class CategoryTicks : CartesianTicks
/// Gets or sets the minimum item to display. The item has to be present in <see cref="Labels"/>.
/// <para>Read more <a href="https://www.chartjs.org/docs/latest/axes/cartesian/category.html#min-max-configuration"/>.</para>
/// </summary>
public string Min { get; set; }
public new string Min { get; set; }

/// <summary>
/// Gets or sets the maximum item to display. The item has to be present in <see cref="Labels"/>.
/// <para>Read more <a href="https://www.chartjs.org/docs/latest/axes/cartesian/category.html#min-max-configuration"/>.</para>
/// </summary>
public string Max { get; set; }
public new string Max { get; set; }
}
}

0 comments on commit e4b493a

Please sign in to comment.