$(window).on("load",(function(){var t=d3.select("#stacked-bar"),a={top:20,right:20,bottom:30,left:50},e=t.node().getBoundingClientRect().width-a.left-a.right,n=500-a.top-a.bottom,r=d3.scale.ordinal().rangeRoundBands([0,e],.1),l=d3.scale.linear().rangeRound([n,0]),d=d3.scale.ordinal().range(["#99B898","#C7C29F","#FECEA8","#FEAC94","#FF847C","#F56A6F","#E84A5F"]),o=d3.svg.axis().scale(r).orient("bottom"),s=d3.svg.axis().scale(l).orient("left").tickFormat(d3.format(".2s")),i=t.append("svg"),c=i.attr("width",e+a.left+a.right).attr("height",n+a.top+a.bottom).append("g").attr("transform","translate("+a.left+","+a.top+")");function f(){e=t.node().getBoundingClientRect().width-a.left-a.right,i.attr("width",e+a.left+a.right),c.attr("width",e+a.left+a.right),r.rangeRoundBands([0,e],.1,.5),c.selectAll(".d3-xaxis").call(o),c.selectAll(".state").attr("transform",(function(t){return"translate("+r(t.State)+",0)"})),c.selectAll(".d3-bar").attr("width",r.rangeBand()).attr("x",(function(t){return r(t.name)})),c.selectAll(".d3-legend text").attr("x",e-24),c.selectAll(".d3-legend rect").attr("x",e-18)}d3.csv("../../../app-assets/data/d3/bar/stacked-bar.csv",(function(t,a){if(t)throw t;d.domain(d3.keys(a[0]).filter((function(t){return"State"!==t}))),a.forEach((function(t){var a=0;t.ages=d.domain().map((function(e){return{name:e,y0:a,y1:a+=+t[e]}})),t.total=t.ages[t.ages.length-1].y1})),a.sort((function(t,a){return a.total-t.total})),r.domain(a.map((function(t){return t.State}))),l.domain([0,d3.max(a,(function(t){return t.total}))]),c.append("g").attr("class","d3-axis d3-xaxis").attr("transform","translate(0,"+n+")").call(o),c.append("g").attr("class","d3-axis d3-yaxis").call(s).append("text").attr("transform","rotate(-90)").attr("y",6).attr("dy",".71em").style("text-anchor","end").style("fill","#666").style("font-size",12).text("Population"),c.selectAll(".state").data(a).enter().append("g").attr("class","state").attr("transform",(function(t){return"translate("+r(t.State)+",0)"})).selectAll(".d3-bar").data((function(t){return t.ages})).enter().append("rect").attr("class","d3-bar").attr("width",r.rangeBand()).attr("y",(function(t){return l(t.y1)})).attr("height",(function(t){return l(t.y0)-l(t.y1)})).style("fill",(function(t){return d(t.name)}));var i=c.selectAll(".legend").data(d.domain().slice().reverse()).enter().append("g").attr("class","d3-legend").attr("transform",(function(t,a){return"translate(0,"+20*a+")"}));i.append("rect").attr("x",e-18).attr("width",18).attr("height",18).style("fill",d),i.append("text").attr("x",e-24).attr("y",9).attr("dy",".35em").style("text-anchor","end").text((function(t){return t}))})),$(window).on("resize",f),$(".menu-toggle").on("click",f)}));