Tribal Funding

  • Ak-Chin Indian Community
  • Aleut Foundation
  • Central Council Tlingit and Haida Indian Tribes
  • American Indian College Fund
  • Chemehuevi Indian Tribe
  • American Indian Education Fund
  • Cherokee Nation
  • American Indian Graduate Center
  • Cheyenne River Sioux Tribe
  • American Indian Science and Engineering Society (AISES)
  • Chickasaw Nation
  • American Indian Services
  • Choctaw Nation of Oklahoma
  • Chahta Foundation
  • Citizen Potawatomi Nation
  • CIRI Foundation
  • Cocopah Indian Tribe
  • Doyon Foundation
  • Colorado River Indian Tribes
  • Goldbelt Heritage Foundation
  • Comanche Nation
  • Hopi Education Endowment Fund
  • Confederated Tribes of Grand Ronde
  • Huna Heritage Foundation
  • Coquille Indian Tribe
  • Indian Health Service (IHS)
  • Dry Creek Rancheria Band of Pomo Indians
  • Indigenous Education, Inc. (The Cobell Scholarship)
  • Eastern Shawnee Tribe of Oklahoma
  • NABI Foundation
  • Eastern Shoshone
  • National Congress of American Indians (NCAI)
  • Fallon Paiute Shoshone Tribe
  • Navajo Engineering & Construction Authority
  • Fond du Lac Band of Lake Superior Chippewa
  • Navajo Nation Chapters
  • Fort Yuma Quechan Tribe
  • Navajo Transitional Energy Company LLC
  • Gila River Indian Community
  • Navajo Tribal Utility Authority
  • Ho-Chunk Nation
  • Sealaska Heritage Institute
  • Hopi Tribe
  • Hualapai Tribe
  • Jicarilla Apache Nation
  • Kaibab Band of Paiute Indians
  • Las Vegas Paiute Tribe
  • Match-E-Be-Nash-She-Wish Band of Pottawatomi Indians (Gun Lake Tribe)
  • Mille Lacs Band of Ojibwe
  • Muscogee (Creek) Nation
  • Navajo Nation
  • Oneida Nation
  • Pawnee Nation of Oklahoma
  • Ponca Tribe of Nebraska
  • Prairie Band Potawatomi Nation
  • Puyallup Tribe of Indians
  • Salt River Higher Education
  • San Carlos Apache Tribe
  • San Manuel Band of Mission Indians
  • San Xavier District of the Tohono O'Odham Nation
  • Shoshone-Bannock Tribes
  • Standing Rock Sioux Tribe
  • Stockbridge-Munsee Community Band of Mohican Indians
  • Tohono O’odham Nation
  • White Mountain Apache Tribe
  • Wyandotte Nation
  • Zuni Tribe
let myChart = document.getElementById('myChart').getContext('2d'); // Global Options Chart.defaults.global.defaultFontFamily = 'Lato'; Chart.defaults.global.defaultFontSize = 18; Chart.defaults.global.defaultFontColor = '#777'; let massPopChart = new Chart(myChart, { type:'pie', // bar, horizontalBar, pie, line, doughnut, radar, polarArea data:{ labels:['Tribes', 'Tribal Organizations'], datasets:[{ label:'FundingData', data:[ 2813994.15, 705656.00, ], //backgroundColor:'green', backgroundColor:[ '#0c234b', '#ab0520', ], borderWidth:3, borderColor:'#ffffff', hoverBorderWidth:3, hoverBorderColor:'#ffffff' }] }, options:{ responsive: true, maintainAspectRatio: false, title:{ display:false, text:'Total Funding $3,519,650.15', fontSize:18 }, legend:{ display:true, position:'top', labels:{ fontColor:'#000' } }, layout:{ padding:{ left:0, right:0, bottom:0, top:0 } }, tooltips:{ displayColors:false, enabled:true, backgroundColor:'#1e5288', callbacks:{ label: function(tooltipItems, data) { return data.labels[tooltipItems.index] + ": $" + data.datasets[tooltipItems.datasetIndex].data[tooltipItems.index].toLocaleString(); } } } } });