Skip to main content
When an element is connected to a data source, data scrolling properties control how the element scrolls through real-time data. This allows you to display multiple records when more data is available than can be shown at once.

Data Scrolling

  • Use Data Scrolling
    Enable or disable scrolling through real-time data for the element.

Scrolling Step Size

  • Scrolling Step Size
    Defines how many rows to advance each time a scroll action occurs.
    Example:
    • If set to 3, and the element starts at row 2, the next rows shown will be 5, 8, 11, etc.
Important:
When multiple elements are used within a row of a table element, all elements must share the same Scrolling Step Size to ensure synchronized scrolling.

Scroll Mode

Defines how and when the scrolling takes place. You can choose from the following options:

💡 Tip

Using Scroll in Sync with… allows you to synchronize the scrolling of one element with another.
Example: If you have a video element that plays a series of clips, and you want related data (e.g., captions, statistics) to scroll at the same pace, you can synchronize them. When the video advances, the other element will also scroll automatically.

Remarks

  • Data scrolling is only available if the element is connected to a data source.
  • Displayed data is always determined by the combination of:
    • Row property (starting row)
    • Scrolling Step Size (number of rows to skip each cycle)
  • Example of scrolling flow:
    • If Row = 2 and Scroll Step Size = 3, the scrolling sequence will be:
      Row 2Row 5Row 8Row 11 → … until the end of the data source is reached, then it loops back to row 2.