Unplanned
Last Updated: 25 Aug 2021 08:40 by ADMIN
Please run the attached sample project and follow the illustrated steps in the gif file.
Unplanned
Last Updated: 29 Mar 2016 10:34 by ADMIN
Workaround:
public Form1()
{
    InitializeComponent();

    this.radCarousel1.CarouselElement.AnimationFinished += CarouselElement_AnimationFinished;
}

void CarouselElement_AnimationFinished(object sender, EventArgs e)
{
    if (this.radCarousel1.Items.Count == 6)
    {
        radCarousel1.CarouselElement.AnimationFinished -= CarouselElement_AnimationFinished;
        this.radCarousel1.SelectedIndex--;
    }
}
Unplanned
Last Updated: 12 Jun 2018 08:19 by ADMIN
To Reproduce:
Add a RadCarousel - add less than 5 items - you can see that the behavior is incorrect

Workaround:
this.carousel.Items.Add(new RadButtonElement("Text"));
for (int i = 0; i < 4; i++)
{
    this.carousel.Items.Add(new RadButtonElement(){ Visibility = ElementVisibility.Hidden });
}

http://www.telerik.com/forums/using-a-radcarousel-with-a-variable-number-of-items-less-than-5
Unplanned
Last Updated: 29 Mar 2016 10:30 by ADMIN