This is a migrated thread and some comments may be shown as answers.

Ticker line duration

1 Answer 38 Views
Ticker
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 13 Jun 2018, 03:53 PM
I have a requirement to add different timed ticker items.  So one ticker item will display for 5 seconds while another will display 2 seconds.  Is this possible?

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 18 Jun 2018, 12:45 PM
Hi John,

RadTicker offers two properties (LineDuration and TickSpeed) which may be suitable for your scenario:

<telerik:RadTicker ID="RadTicker1" runat="server"
 AutoStart="True"
 LineDuration="1000"
 Loop="True"
 TickSpeed="100">
 <Items>
 <telerik:RadTickerItem Text="Testing, Testing...." />
 <telerik:RadTickerItem Text="1, 2, 3............." />
 </Items>
</telerik:RadTicker>

The LineDuration property specifies in milliseconds the pause makes before starting to tick the next line (if AutoAdvance=True),
while the TickSpeed specifies the duration in milliseconds between ticking each character of a tickerline. The lower the value the faster a line will finish ticking.


Regards,
Rumen
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Ticker
Asked by
John
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or