Widget Docs
Coverage MatrixDocumentationRelease LogLog InContact Us

Top Teams

us.season.ncaab.topTeams provides a team leaderboard for a selected statistic and season.

For the widget to render you must provide a valid seasonId.

Parameters

Name Type Argument Default Description
seasonId number required Season ID
year number optional Selected year as friendly alternative to seasonId. Used in conjunction with seasonType.
seasonType string optional 'regular' Season type. Valid options are: regular, playoffs, or total. Used in conjunction with year.
conference string optional all conferences Selected conference. See here for a list of valid options.
statType string optional 'points' Selected Stat. See below for valid options.
disableHeader boolean optional If true hides the header.
disableStatsDropdown boolean optional If true hides the statistic type dropdown.
disableConferenceDropdown boolean optional If true hides the conference dropdown.
teamsLimit number optional 5 Limits list length.
border boolean optional If true enables a border around the widget.
onItemClick function optional Function/event handler. Emits event on team row click or touch.

Valid options for statType:

  • points
  • rebounds
  • assists
  • blocks
  • steals
  • turnovers
  • three_points_made
  • free_throws_made
  • points_per_match
  • rebounds_per_match
  • assists_per_match
  • blocks_per_match
  • steals_per_match
  • field_goals_percentage
  • three_points_percentage
  • free_throws_percentage

Examples

<div class="sr-widget" data-sr-widget="us.season.ncaab.topTeams" data-sr-season-id="56011"></div>
<script type="application/javascript" src="https://widgets.media.sportradar.com/YOUR_CLIENT_ALIAS/widgetloader" data-sr-language="en_us" async></script>

<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.media.sportradar.com/YOUR_CLIENT_ALIAS/widgetloader","SIR", {
        language: 'en_us'
    });
    SIR('addWidget', '#sr-widget', 'us.season.ncaab.topTeams', { year: 2018, statType: 'assists' });
</script>
<div id="sr-widget"></div>

<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.media.sportradar.com/YOUR_CLIENT_ALIAS/widgetloader","SIR", {
        language: 'en_us'
    });
    SIR('addWidget', '#sr-widget', 'us.season.ncaab.topTeams', {year: 2018, statType: 'blocks', teamsLimit: '10', onItemClick: function(type, obj) { alert('uniqueTeamId: ' + obj.uniqueTeamId); }});
</script>
<div id="sr-widget"></div>