Betting Entertainment Tools

Season Standings

A season.standings brings graphical visualisation of team's week-by-week league position from beginning of the tournament to current the most recent round. It's not applicable for matches in knockout stages or cups or friendly games.

For the widget to render you need to provide one of the following parameter combinations:

  1. matchId,
  2. teamUid1, teamUid2 and seasonId/tournamentId/uniqueTournamentId.
Parameters
Name Type Attributes Default Description
props object <required>
matchId number <required>

Match Id.

seasonId number <required>

Season Id.

teamUid1 number <required>

Unique Team Id 1.

teamUid2 number <required>

Unique Team Id 2.

tournamentId number <required>

Tournament Id.

uniqueTournamentId number <required>

Unique Tournament Id.

rowHeight number 32

Adjusts the row height. Does not work with dynamic change.

disableWidgetHeader boolean false

When set to true, hides widget header.

onTrack function

Function/event handler, see Tracking options.

Examples

HTML/Declarative

<div id="sr-widget" data-sr-widget="season.standings" data-sr-match-id="28933404"></div>
<script type="application/javascript" src="https://widgets.sir.sportradar.com/sportradar/widgetloader" async></script>

JS/Programmatic

<script>
    (function(a,b,c,d,e,f,g,h,i){a[e]||(i=a[e]=function(){(a[e].q=a[e].q||[]).push(arguments)},i.l=1*new Date,i.o=f,
    g=b.createElement(c),h=b.getElementsByTagName(c)[0],g.async=1,g.src=d,g.setAttribute("n",e),h.parentNode.insertBefore(g,h)
    )})(window,document,"script","https://widgets.sir.sportradar.com/sportradar/widgetloader","SIR", {
        language: 'en'
    });
    SIR('addWidget', '#sr-widget', 'season.standings', {matchId: 28933404});
</script>
<div id="sr-widget"></div>