Completed
Last Updated: 13 Nov 2020 19:20 by ADMIN
Release 2.20.0
Emanuel
Created on: 13 Nov 2020 09:35
Category: ChunkProgressBar
Type: Bug Report
1
Incorrect calculation of the chunks

The component does not calculate the chunks correctly. Below you could see a reproduction and as an attached file the result of building it. 

Reproduction:

<TelerikChunkProgressBar Value="@Value"
                         Max="@MaxValue"
                         ChunkCount="@MaxValue">
</TelerikChunkProgressBar>


@code {
    public double Value { get; set; } = 15;
    public int MaxValue { get; set; } = 15;
} 

Attached Files:
0 comments