Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Syncfusion.Blazor.Charts.Internal.ChartSeriesRenderer.cs has the following line of code (line no 1084):
If the X value of the point is null, then the entire app crashes because
PushCategoryData(point, index, point.X.ToString()) throws a NullPointerException if the X value is null.
PushCategoryData(point, index, point.X?.ToString())
else
PushCategoryData(point, index, point.X?.ToString( ) ? ? string. Empty)