diff --git a/src/ChartJs.Blazor/Common/Axes/Ticks/CategoryTicks.cs b/src/ChartJs.Blazor/Common/Axes/Ticks/CategoryTicks.cs index 954adc2..55f57a5 100644 --- a/src/ChartJs.Blazor/Common/Axes/Ticks/CategoryTicks.cs +++ b/src/ChartJs.Blazor/Common/Axes/Ticks/CategoryTicks.cs @@ -16,12 +16,12 @@ public class CategoryTicks : CartesianTicks /// Gets or sets the minimum item to display. The item has to be present in . /// Read more . /// - public string Min { get; set; } + public new string Min { get; set; } /// /// Gets or sets the maximum item to display. The item has to be present in . /// Read more . /// - public string Max { get; set; } + public new string Max { get; set; } } }