Chart Y axis won't refreshing

    <div class="container2">
        <div class="row2">
            <div class="col-sm-3 my-3">
                <div class="chart2">
                    <RadzenChart @ref="myChart" Style="height:230px;">
                        <RadzenLegend Position="LegendPosition.Bottom">
                        </RadzenLegend>
                        <RadzenColumnSeries Hidden="legendVisibility" Data="@notCompleated" CategoryProperty="Type" Title="תקופה נוחכית" LineType="LineType.Dashed" ValueProperty="Quantity" Fill="#0a77f5">
                            <RadzenSeriesDataLabels Visible="true" />
                        </RadzenColumnSeries>
                        <RadzenColumnSeries Hidden="legendVisibility" Data="@notCompleatedOld" CategoryProperty="Type" Title="תקופה קודמת" ValueProperty="Quantity" Fill="#c70606">
                            <RadzenSeriesDataLabels Visible="true" />
                        </RadzenColumnSeries>
                        <RadzenColumnOptions Radius="5" />
                        <RadzenValueAxis>
                            <RadzenGridLines Visible="true" />
                        </RadzenValueAxis>
                    </RadzenChart>
                </div>
            </div>
        </div>
    </div>

this.notCompleated[0] = new GraphItem { Type = A", Quantity = chosenNew.notCompleated.CT };
this.notCompleated[1] = new GraphItem { Type = B", Quantity = chosenNew.notCompleated.US };
this.notCompleated[2] = new GraphItem { Type = "C", Quantity = chosenNew.notCompleated.Memo };
this.notCompleated[3] = new GraphItem { Type = "D", Quantity = chosenNew.notCompleated.Rentgen };

this.notCompleatedOld[0] = new GraphItem { Type = "A", Quantity = chosenForward.notCompleated.CT };
this.notCompleatedOld[1] = new GraphItem { Type = "B", Quantity = chosenForward.notCompleated.US };
this.notCompleatedOld[2] = new GraphItem { Type = "C", Quantity = chosenForward.notCompleated.Memo };
this.notCompleatedOld[3] = new GraphItem { Type = "D", Quantity = chosenForward.notCompleated.Rentgen };

myChart.Reload();

When I'm trying to insert bigger Y values than the formers they are not refreshing.

Hi @nikita.gelfman666,

We will need a runnable code snippet which reproduces the issue. You can use some of the chart online demos as a reference.