Widget Docs
Coverage MatrixDocumentationRelease LogLog InContact Us

Team Seasonal Statistics

us.season.ncaaf.teamsStats displays a sortable team statistics table for all teams in a given season. Data can be filtered by season type (regular season, bowl games) and by stats categories (offense, defense).

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

Parameters

Name Type Description
props object properties
Name Type Argument Default Description
seasonId number optional active season Season ID
year number optional Season year.
seasonType string optional Season type: total, regular, or playoffs.
mode string optional 'offense' Mode: offense or defense.
conference string optional 'fbs' Conference: fbs.
pageLength number optional 50 Number of teams to display per page.
border boolean optional When set to true the table is displayed with a border.
disableTitle boolean optional When set to true hides the widget title.
hideFilters boolean optional When set to true hides all filters / dropdown.
offenseColumns string optional Comma separated string of offensive table statistics column keys. Used for picking fewer columns and different order. Valid options are: pts, ptsg, tyrd, tyrdg, pyrd, pyrdg, ryrd, ryrdg.
defenseColumns string optional Comma separated string of defensive table statistics column keys. Used for picking fewer columns and different order. Valid options are: ptsa, ptsag, tyrd, tyrdg, ttacks, sacks, sacky, ff, dint, intyds.
onItemClick function optional Function/event handler. Emits uniqueTeamId, seasonId, uniqueTournamentId on table row click or touch.

props.offenseColumns Option Descriptions

Option Description
pts Points
ptsg Points Per Game
tyrd Total Yards
tyrdg Total Yards Per Game
pyrd Passing Yards
pyrdg Passing Yards Per Game
ryrd Rushing Yards
ryrdg Rushing Yards Per Game

props.defenseColumns Option Descriptions

Option Description
ptsa Points Against
ptsag Opponent Points Per Game
tyrd Total Yards Allowed
tyrdg Total Yards Allowed Per Game
ttacks Total Tackles
sacks Sacks
sacky Defensive Sack Yards
ff Fumbles Forced
dint Defensive Interceptions
ff Defensive Interception Yards

Examples

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