diff --git a/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/BarChart/BitChartBarScales.cs b/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/BarChart/BitChartBarScales.cs
index 18da6bec34..8ea9436062 100644
--- a/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/BarChart/BitChartBarScales.cs
+++ b/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/BarChart/BitChartBarScales.cs
@@ -12,12 +12,12 @@ public class BitChartBarScales
/// You can use any but there are extended axes in the namespace which contain additional properties to customize the bar chart axes.
///
[JsonProperty("xAxes")]
- public IList XAxes { get; set; }
+ public List XAxes { get; set; }
///
/// Gets or sets the configurations for the y-axes.
/// You can use any but there are extended axes in the namespace which contain additional properties to customize the bar chart axes.
///
[JsonProperty("yAxes")]
- public IList YAxes { get; set; }
+ public List YAxes { get; set; }
}
diff --git a/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/Axes/Ticks/BitChartCategoryTicks.cs b/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/Axes/Ticks/BitChartCategoryTicks.cs
index 90de4dd044..954752c798 100644
--- a/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/Axes/Ticks/BitChartCategoryTicks.cs
+++ b/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/Axes/Ticks/BitChartCategoryTicks.cs
@@ -8,7 +8,7 @@ public class BitChartCategoryTicks : BitChartCartesianTicks
///
/// Gets or sets an array of labels to display.
///
- public IList Labels { get; set; }
+ public List Labels { get; set; }
///
/// Gets or sets the minimum item to display. The item has to be present in .
diff --git a/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/BitChartChartData.cs b/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/BitChartChartData.cs
index 2b60ee5278..2e8db578e4 100644
--- a/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/BitChartChartData.cs
+++ b/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/BitChartChartData.cs
@@ -23,7 +23,7 @@ public BitChartChartData()
/// for the chart to work correctly.
///
///
- public virtual IList Labels { get; }
+ public virtual List Labels { get; }
///
/// Gets the labels the horizontal axes will use.
@@ -32,7 +32,7 @@ public BitChartChartData()
/// for the chart to work correctly.
///
///
- public virtual IList XLabels { get; }
+ public virtual List XLabels { get; }
///
/// Gets the labels the vertical axes will use.
@@ -41,12 +41,12 @@ public BitChartChartData()
/// for the chart to work correctly.
///
///
- public virtual IList YLabels { get; }
+ public virtual List YLabels { get; }
///
/// Gets the datasets displayed in this chart.
///
- public IList Datasets { get; }
+ public List Datasets { get; }
[Obsolete("json.net", true)]
public bool ShouldSerializeLabels() => Labels?.Count > 0;
diff --git a/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/BitChartConfigBase.cs b/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/BitChartConfigBase.cs
index 96b670438e..17ba6f9f4e 100644
--- a/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/BitChartConfigBase.cs
+++ b/src/BlazorUI/Bit.BlazorUI.Extras/Components/Chart/Common/BitChartConfigBase.cs
@@ -41,7 +41,7 @@ protected BitChartConfigBase(BitChartChartType chartType)
/// instead.
///
///
- public IList