Legend Colors in charting component not match the custom colors set by user

Good day, thank you for the amazing work you are doing here, I just had some issue with the charting component where I set a custom set of colors for my bars and columns and I see that they not matching the Legends one. I did found a similar post in here
and I did try to just add the custom list for fill like in the example page in my project as well as online in your page demo and the result is the same

List<SeriesColorRange> fillRange = new List<SeriesColorRange>()
    {
        new SeriesColorRange() {Min = 0, Max = 275000, Color = "red"},
        new SeriesColorRange() {Min = 275000, Max = 324000, Color = "orange"},
        new SeriesColorRange() {Min = 324000, Max = 10000000, Color = "#06cd06"},
    };

and adding the column filler

<RadzenColumnSeries FillRange="@fillRange">

As said I tested with the actual online version as well as 5.8 that I'm using for my project right now and the issue is the same. Best regards,

Indeed the FillRange colors are not used for the legend. You should set the Fills property instead.

Thank you, yeah just after posting the question I realized I shall define the colors of the columns manually, best regards.