Widget Docs
Coverage MatrixDocumentationChange LogLog InContact Us
Widget Docs

Season Team Stats

us.season.ncaab.teamsStats displays a sortable team statistics table for all teams in a given season. Data can be filtered by conference, per-game/totals, and season type (regular season, postseason, total).

All widget properties are optional. By default, the widget will provide a table for the active season.

Parameters

NameTypeDescription
propsobjectproperties
NameTypeArgumentDefaultDescription
seasonIdnumberoptionalactive seasonSeason ID
yearnumberoptionalSeason year.
seasonTypestringoptional'regular'Season type: total, regular, or postseason.
modestringoptional'totals'Initial mode to display. Options: totals or perGame.
conferencestringoptionalallConference name. To find a list of valid names, click here.
pageLengthnumberoptional50Number of teams to display per page.
borderbooleanoptionalWhen set to true the table is displayed with a border.
disableTitlebooleanoptionalWhen set to true the widget title is hidden.
hideFiltersbooleanoptionalWhen set to true hides all filters / dropdown.
columnsstringoptionalComma separated string of table statistics column keys. Used for picking fewer columns and different order. Valid options are: pts, reb, ast, stl, blk, to, pf, fgm, fga, fgp, ftm, fta, ftp, 3pm, 3pa, 3pp.
onItemClickfunctionoptionalFunction/event handler. Emits uniqueTeamId, seasonId, uniqueTournamentId on table row click or touch.
props.Columns Option Descriptions
OptionDescription
ptsPoints
rebRebounds
astAssists
stlSteals
blkBlocks
toTurnovers
pfPersonal Fouls
fgmField Goals Made
fgaField Goals Attempted
fgpField Goal Percentage
ftmFree Throws Made
ftaFree Throws Attempted
ftpFree Throw Percentage
3pmThree Pointers Made
3paThree Pointers Attempted
3ppThree Point Percentage

Examples

<div class="sr-widget" data-sr-widget="us.season.ncaab.teamsStats"></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.teamsStats', {});
</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.teamsStats', {onItemClick: function(type, obj){alert('uniqueTeamId: ' + obj.uniqueTeamId);}});
</script>
<div id="sr-widget"></div>