Widgets.us.player.ncaaf.CareerStats

A us.player.ncaaf.CareerStats displays ncaaf seasonal teams statistics table.

For the widget to render you need to provide playerId.

props.passingColumns options descriptions

optiondescription
pcPassing completions
paPassing attempts
pcpPassing completion percentage
ptPassing touchdowns
piPassing interceptions
pyPassing yards
prPassing rating
pygPassing yards per game
pyaPassing yards per attempt
psPassing sacks
plPassing longest

props.rushingColumns options descriptions

optiondescription
raRushing attempts
ryRushing yards
ravgRushing average
rtRushing touchdowns
ragRushing attempts per game
rygRushing yards per game
rlRushing longest

props.receivingColumns options descriptions

optiondescription
recrReceiving receptions
recyReceiving yards
rectReceiving touchdowns
recygReceiving yards per game
recyrReceiving yards per reception
reclReceiving longest

props.defenseColumns options descriptions

optiondescription
dtDefense tackles
datDefense assisted tackles
dctDefense combined tackles
dtflDefense tackles for loss
dsDefense sacks
dsyDefense sack yards
ffForced fumbles
tfrTotal fumbles recovered
diDefense interceptions
diyDefense interception yards
ditDefense interception touchdowns

props.kickingColumns options descriptions

optiondescription
ktKickoffs total
ktbKickoffs touchbacks
knyKickoffs net yards
fgmField goals made
fgaField goals attempted
fgpField goals percentage
sfglSpecial teams field goal longest
epkmExtra point kicking made
epkaExtra point kicking attempted
epkpExtra point kicking percent

props.puntingColumns options descriptions

optiondescription
punttPunts total
puntgyPunts gross yards
puntgyaPunts gross yards average
puntbPunts blocked
punttbPunts touchbacks
puntioPunts inside opponents 20 yard
puntlPunts longest

props.kickoffReturnsColumns options descriptions

optiondescription
krKickoff returns
kryKickoff return yards
kryaKickoff return yards average
krfcKickoff return fair catches
krlKickoff return longest
krtKickoff return touchdowns

props.kickoffReturnsColumns options descriptions

optiondescription
puntrPunt returns
puntryPunt return yards
puntryaPunt return yards average
puntrfcPunt return fair catches
puntrlPunt return longest
puntrtPunt return touchdowns

new CareerStats(props)

Parameters
Name Type Description
props object
Properties
Name Type Argument Default Description
seasonId number <optional>

Player Id.

seasonDefaultSortDirection string <optional>
'asc'

Sets initial season column sort direction. Valid options are asc and desc...

passingColumns string <optional>

Comma separated string of passing table statistics column keys. Used for picking picking fewer columns and different order. Valid options are pc, pa, pcp, pt, pi, py, pr, pyg, pya, ps, pl.

rushingColumns string <optional>

Comma separated string of rushing table statistics column keys. Used for picking picking fewer columns and different order. Valid options are ra, ry, ravg, rt, rag, ryg, rl.

receivingColumns string <optional>

Comma separated string of receiving table statistics column keys. Used for picking picking fewer columns and different order. Valid options are recr, recy, rect, recyg, recyr, recl.

defenseColumns string <optional>

Comma separated string of defense table statistics column keys. Used for picking picking fewer columns and different order. Valid options are dt, dat, dct, dtfl, ds, dsy, ff, tfr, di, diy, dit.

kickingColumns string <optional>

Comma separated string of kicking table statistics column keys. Used for picking picking fewer columns and different order. Valid options are kt, ktb, kny, fgm, fga, fgp, sfgl, epkm, epka, epkp.

puntingColumns string <optional>

Comma separated string of punting table statistics column keys. Used for picking picking fewer columns and different order. Valid options are puntt, puntgy, puntgya, puntb, punttb, puntio, puntl.

kickoffReturnsColumns string <optional>

Comma separated string of kickoff returns table statistics column keys. Used for picking picking fewer columns and different order. Valid options are kr, kry, krya, krfc, krl, krt.

puntReturnsColumns string <optional>

Comma separated string of punt returns table statistics column keys. Used for picking picking fewer columns and different order. Valid options are puntr, puntry, puntrya, puntrfc, puntrl, puntrt.

disableTotalRow boolean <optional>

When set to true, disables the table total row.

hideBlankSeasons boolean <optional>

When set to true, hides blank season rows. Will also hide category table if all it's rows are hidden.

filterSeasons boolean <optional>

Deprecated -> use hideBlankSeasons instead. When set to true, seasons are not added to category tables if all relevant stats are 0! Empty tables are not displayed. If all category tables are empty, NoDataError is displayed.

hideBlankCategories boolean <optional>
true

When set to true, hides blank category tables.

border boolean <optional>

When set to true, table is displayed with border.

Examples

HTML/Declarative

<div class="sr-widget" data-sr-widget="us.player.ncaaf.careerStats" data-sr-player-id="1196966"></div>
<script type="application/javascript" src="https://widgets.media.sportradar.com/uscommon/widgetloader" data-sr-language="en_us" 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.media.sportradar.com/uscommon/widgetloader","USW", {
        language: 'en_us'
    });
    USW('addWidget', '#sr-widget', 'us.player.ncaaf.careerStats', {playerId: '1196966'});
</script>
<div id="sr-widget"></div>