diff --git a/src/models/scatterFisheyeChart.js b/deprecated/scatterFisheyeChart.js similarity index 100% rename from src/models/scatterFisheyeChart.js rename to deprecated/scatterFisheyeChart.js diff --git a/nv.d3.js b/nv.d3.js index 69da4bd..5244daf 100644 --- a/nv.d3.js +++ b/nv.d3.js @@ -2576,34 +2576,32 @@ nv.models.distribution = function() { return chart; } -//TODO: Finish merging this chart into the NVD3 style! nv.models.indentedTree = function() { - //Default Settings - var margin = {top: 0, right: 0, bottom: 0, left: 0}, //TODO: implement, maybe as margin on the containing div - width = 960, - height = 500, - color = nv.utils.defaultColor(), - id = Math.floor(Math.random() * 10000), - header = true, - noResultsText = 'No Results found.' - childIndent = 20, - columns = [{key:'key', label: 'Name', type:'text'}], //TODO: consider functions like chart.addColumn, chart.removeColumn, instead of a block like this - tableClass = null, - iconOpen = 'images/grey-plus.png', //TODO: consider removing this and replacing with a '+' or '-' unless user defines images - iconClose = 'images/grey-minus.png'; + //============================================================ + // Public Variables with Default Settings + //------------------------------------------------------------ - var dispatch = d3.dispatch('elementClick', 'elementDblclick', 'elementMouseover', 'elementMouseout'); + var margin = {top: 0, right: 0, bottom: 0, left: 0} //TODO: implement, maybe as margin on the containing div + , width = 960 + , height = 500 + , color = nv.utils.defaultColor() + , id = Math.floor(Math.random() * 10000) + , header = true + , noData = "No Data Available." + , childIndent = 20 + , columns = [{key:'key', label: 'Name', type:'text'}] //TODO: consider functions like chart.addColumn, chart.removeColumn, instead of a block like this + , tableClass = null + , iconOpen = 'images/grey-plus.png' //TODO: consider removing this and replacing with a '+' or '-' unless user defines images + , iconClose = 'images/grey-minus.png' + , dispatch = d3.dispatch('elementClick', 'elementDblclick', 'elementMouseover', 'elementMouseout') + ; + + //============================================================ function chart(selection) { selection.each(function(data) { - var availableWidth = width - margin.left - margin.right, //TODO: decide if there is any use for these - availableHeight = height - margin.top - margin.bottom; - - - chart.update = function() { selection.transition().call(chart) }; - var i = 0, depth = 1; @@ -2612,16 +2610,26 @@ nv.models.indentedTree = function() { .size([height, childIndent]); //Not sure if this is needed now that the result is HTML - if (!data[0].key) data[0].key = noResultsText; + //------------------------------------------------------------ + // Display No Data message if there's nothing to show. + + if (!data[0].key) data[0].key = noData; + + //------------------------------------------------------------ + var nodes = tree.nodes(data[0]); + //------------------------------------------------------------ + // Setup containers and skeleton of chart + var wrap = d3.select(this).selectAll('div').data([[nodes]]); var wrapEnter = wrap.enter().append('div').attr('class', 'nvd3 nv-wrap nv-indentedtree'); var tableEnter = wrapEnter.append('table'); var table = wrap.select('table').attr('width', '100%').attr('class', tableClass); + //------------------------------------------------------------ if (header) { @@ -2711,7 +2719,7 @@ nv.models.indentedTree = function() { .order() .on('click', function(d) { dispatch.elementClick({ - row: this, //TODO: decide whether or not this should be consistent with scatter/line events + row: this, //TODO: decide whether or not this should be consistent with scatter/line events or should be an html link (a href) data: d, pos: [d.x, d.y] }); @@ -2785,13 +2793,19 @@ nv.models.indentedTree = function() { return (values && values.length); } + + chart.update = function() { selection.transition().call(chart) }; + chart.container = this; + }); return chart; } - + //============================================================ + // Expose Public Variables + //------------------------------------------------------------ chart.margin = function(_) { if (!arguments.length) return margin; @@ -2830,9 +2844,9 @@ nv.models.indentedTree = function() { return chart; }; - chart.noResultsText = function(_) { - if (!arguments.length) return noResultsText; - noResultsText = _; + chart.noData = function(_) { + if (!arguments.length) return noData; + noData = _; return chart; }; @@ -2860,6 +2874,9 @@ nv.models.indentedTree = function() { return chart; } + //============================================================ + + return chart; } diff --git a/nv.d3.min.js b/nv.d3.min.js index b64c8b5..d95148e 100644 --- a/nv.d3.min.js +++ b/nv.d3.min.js @@ -1,4 +1,4 @@ (function(){function c(a,b,c){return function(d,e,f){var g=a(d),h=[];g1)while(gn+m&&(q=n-j-5);break;case"w":p=b[0]+e,q=b[1]-j/2,p+k>l&&(p=b[0]-k-e),qn+m&&(q=n-j-5);break;case"n":p=b[0]-k/2,q=b[1]+e,pl&&(p=l-k-5),q+j>n+m&&(q=b[1]-j-e);break;case"s":p=b[0]-k/2,q=b[1]-j-e,pl&&(p=l-k-5),n>q&&(q=b[1]+20)}h.style.left=p+"px",h.style.top=q+"px",h.style.opacity=1,h.style.position="absolute",h.style.pointerEvents="none";return h},b.cleanup=function(){var a=document.getElementsByClassName("nvtooltip"),b=[];while(a.length)b.push(a[0]),a[0].style.transitionDelay="0 !important",a[0].style.opacity=0,a[0].className="nvtooltip-pending-removal";setTimeout(function(){while(b.length){var a=b.pop();a.parentNode.removeChild(a)}},500)}}(),a.utils.windowSize=function(){var a={width:640,height:480};document.body&&document.body.offsetWidth&&(a.width=document.body.offsetWidth,a.height=document.body.offsetHeight),document.compatMode=="CSS1Compat"&&document.documentElement&&document.documentElement.offsetWidth&&(a.width=document.documentElement.offsetWidth,a.height=document.documentElement.offsetHeight),window.innerWidth&&window.innerHeight&&(a.width=window.innerWidth,a.height=window.innerHeight);return a},a.utils.windowResize=function(a){var b=window.onresize;window.onresize=function(c){typeof b=="function"&&b(c),a(c)}},a.utils.getColor=function(b){if(!arguments.length)return a.utils.defaultColor();return Object.prototype.toString.call(b)==="[object Array]"?function(a,c){return a.color||b[c%b.length]}:b},a.utils.defaultColor=function(){var a=d3.scale.category20().range();return function(b,c){return b.color||a[c%a.length]}},a.utils.pjax=function(b,c){function d(d){d3.html(d,function(d){var e=d3.select(c).node();e.parentNode.replaceChild(d3.select(d).select(c).node(),e),a.utils.pjax(b,c)})}d3.selectAll(b).on("click",function(){history.pushState(this.href,this.textContent,this.href),d(this.href),d3.event.preventDefault()}),d3.select(window).on("popstate",function(){d3.event.state&&d(d3.event.state)})},a.models.axis=function(){function m(c){c.each(function(c){var m=d3.select(this),n=m.selectAll("g.nv-wrap.nv-axis").data([c]),o=n.enter().append("g").attr("class","nvd3 nv-wrap nv-axis"),p=o.append("g"),q=n.select("g");j!==null?k.ticks(j):(k.orient()=="top"||k.orient()=="bottom")&&k.ticks(Math.abs(d.range()[1]-d.range()[0])/100),d3.transition(q).call(k),l=l||k.scale();var r=q.selectAll("text.nv-axislabel").data([e||null]);r.exit().remove();switch(k.orient()){case"top":r.enter().append("text").attr("class","nv-axislabel").attr("text-anchor","middle").attr("y",0);var s=d.range().length==2?d.range()[1]:d.range()[d.range().length-1]+(d.range()[1]-d.range()[0]);r.attr("x",s/2);if(f){var t=n.selectAll("g.nv-axisMaxMin").data(d.domain());t.enter().append("g").attr("class","nv-axisMaxMin").append("text"),t.exit().remove(),t.attr("transform",function(a,b){return"translate("+d(a)+",0)"}).select("text").attr("dy","0em").attr("y",-k.tickPadding()).attr("text-anchor","middle").text(function(a,b){return(""+k.tickFormat()(a)).match("NaN")?"":k.tickFormat()(a)}),d3.transition(t).attr("transform",function(a,b){return"translate("+d.range()[b]+",0)"})}break;case"bottom":var u=30,v=30;if(h%360){var w=q.selectAll("g").select("text");w.each(function(a,b){var c=this.getBBox().width;c>v&&(v=c)});var x=Math.abs(Math.sin(h*Math.PI/180)),u=(x?x*v:v)+30;w.attr("transform",function(a,b,c){return"rotate("+h+" 0,0)"}).attr("text-anchor",h%360>0?"start":"end")}r.enter().append("text").attr("class","nv-axislabel").attr("text-anchor","middle").attr("y",u);var s=d.range().length==2?d.range()[1]:d.range()[d.range().length-1]+(d.range()[1]-d.range()[0]);r.attr("x",s/2);if(f){var t=n.selectAll("g.nv-axisMaxMin").data(d.domain());t.enter().append("g").attr("class","nv-axisMaxMin").append("text"),t.exit().remove(),t.attr("transform",function(a,b){return"translate("+d(a)+",0)"}).select("text").attr("dy",".71em").attr("y",k.tickPadding()).attr("transform",function(a,b,c){return"rotate("+h+" 0,0)"}).attr("text-anchor",h%360>0?"start":"end").text(function(a,b){return(""+k.tickFormat()(a)).match("NaN")?"":k.tickFormat()(a)}),d3.transition(t).attr("transform",function(a,b){return"translate("+d.range()[b]+",0)"})}break;case"right":r.enter().append("text").attr("class","nv-axislabel").attr("text-anchor",i?"middle":"begin").attr("transform",i?"rotate(90)":"").attr("y",i?-Math.max(a.right,b)-12:-10),r.attr("x",i?d.range()[0]/2:k.tickPadding());if(f){var t=n.selectAll("g.nv-axisMaxMin").data(d.domain());t.enter().append("g").attr("class","nv-axisMaxMin").append("text").style("opacity",0),t.exit().remove(),t.attr("transform",function(a,b){return"translate(0,"+d(a)+")"}).select("text").attr("dy",".32em").attr("y",0).attr("x",k.tickPadding()).attr("text-anchor","start").text(function(a,b){return(""+k.tickFormat()(a)).match("NaN")?"":k.tickFormat()(a)}),d3.transition(t).attr("transform",function(a,b){return"translate(0,"+d.range()[b]+")"}).select("text").style("opacity",1)}break;case"left":r.enter().append("text").attr("class","nv-axislabel").attr("text-anchor",i?"middle":"end").attr("transform",i?"rotate(-90)":"").attr("y",i?-Math.max(a.left,b)+12:-10),r.attr("x",i?-d.range()[0]/2:-k.tickPadding());if(f){var t=n.selectAll("g.nv-axisMaxMin").data(d.domain());t.enter().append("g").attr("class","nv-axisMaxMin").append("text").style("opacity",0),t.exit().remove(),t.attr("transform",function(a,b){return"translate(0,"+l(a)+")"}).select("text").attr("dy",".32em").attr("y",0).attr("x",-k.tickPadding()).attr("text-anchor","end").text(function(a,b){return(""+k.tickFormat()(a)).match("NaN")?"":k.tickFormat()(a)}),d3.transition(t).attr("transform",function(a,b){return"translate(0,"+d.range()[b]+")"}).select("text").style("opacity",1)}}r.text(function(a){return a}),f&&(k.orient()==="left"||k.orient()==="right")&&q.selectAll("g").each(function(a,b){if(d(a)d.range()[0]-10)a>1e-10||a<-1e-10?d3.select(this).remove():d3.select(this).select("text").remove()});if(f&&(k.orient()==="top"||k.orient()==="bottom")){var y=[];n.selectAll("g.nv-axisMaxMin").each(function(a,b){b?y.push(d(a)-this.getBBox().width-4):y.push(d(a)+this.getBBox().width+4)}),q.selectAll("g").each(function(a,b){if(d(a)y[1])a>1e-10||a<-1e-10?d3.select(this).remove():d3.select(this).select("text").remove()})}g&&q.selectAll("line.tick").filter(function(a){return!parseFloat(Math.round(a*1e5)/1e6)}).classed("zero",!0),l=d.copy()});return m}var a={top:0,right:0,bottom:0,left:0},b=60,c=60,d=d3.scale.linear(),e=null,f=!0,g=!0,h=0,i=!0,j=null,k=d3.svg.axis().scale(d).orient("bottom").tickFormat(function(a){return a}),l;d3.rebind(m,k,"orient","tickValues","tickSubdivide","tickSize","tickPadding","tickFormat"),d3.rebind(m,d,"domain","range","rangeBand","rangeBands"),m.margin=function(b){if(!arguments.length)return a;a=b;return m},m.width=function(a){if(!arguments.length)return b;b=a;return m},m.ticks=function(a){if(!arguments.length)return j;j=a;return m},m.height=function(a){if(!arguments.length)return c;c=a;return m},m.axisLabel=function(a){if(!arguments.length)return e;e=a;return m},m.showMaxMin=function(a){if(!arguments.length)return f;f=a;return m},m.highlightZero=function(a){if(!arguments.length)return g;g=a;return m},m.scale=function(a){if(!arguments.length)return d;d=a,k.scale(d),d3.rebind(m,d,"domain","range","rangeBand","rangeBands");return m},m.rotateYLabel=function(a){if(!arguments.length)return i;i=a;return m},m.rotateLabels=function(a){if(!arguments.length)return h;h=a;return m};return m},a.models.historicalBar=function(){function q(a){a.each(function(a){var q=c-b.left-b.right,r=d-b.top-b.bottom,s=d3.select(this);f.domain(n||d3.extent(a[0].values.map(h).concat(j))).range([0,q]),g.domain(o||d3.extent(a[0].values.map(i).concat(k))).range([r,0]);if(f.domain()[0]===f.domain()[1]||g.domain()[0]===g.domain()[1])singlePoint=!0;f.domain()[0]===f.domain()[1]&&(f.domain()[0]?f.domain([f.domain()[0]-f.domain()[0]*.01,f.domain()[1]+f.domain()[1]*.01]):f.domain([-1,1])),g.domain()[0]===g.domain()[1]&&(g.domain()[0]?g.domain([g.domain()[0]+g.domain()[0]*.01,g.domain()[1]-g.domain()[1]*.01]):g.domain([-1,1]));var t=s.selectAll("g.nv-wrap.nv-bar").data([a[0].values]),u=t.enter().append("g").attr("class","nvd3 nv-wrap nv-bar"),v=u.append("defs"),w=u.append("g"),z=t.select("g");w.append("g").attr("class","nv-bars"),t.attr("transform","translate("+b.left+","+b.top+")"),s.on("click",function(a,b){p.chartClick({data:a,index:b,pos:d3.event,id:e})}),v.append("clipPath").attr("id","nv-chart-clip-path-"+e).append("rect"),t.select("#nv-chart-clip-path-"+e+" rect").attr("width",q).attr("height",r),z.attr("clip-path",l?"url(#nv-chart-clip-path-"+e+")":"");var A=t.select(".nv-bars").selectAll(".nv-bar").data(function(a){return a});A.exit().remove();var B=A.enter().append("rect").attr("class",function(a,b,c){return(i(a,b)<0?"nv-bar negative":"nv-bar positive")+" nv-bar-"+c+"-"+b}).attr("fill",function(a,b){return m(a,b)}).attr("x",0).attr("y",function(a,b){return g(Math.max(0,i(a,b)))}).attr("height",function(a,b){return Math.abs(g(i(a,b))-g(0))}).on("mouseover",function(b,c){d3.select(this).classed("hover",!0),p.elementMouseover({point:b,series:a[0],pos:[f(h(b,c)),g(i(b,c))],pointIndex:c,seriesIndex:0,e:d3.event})}).on("mouseout",function(b,c){d3.select(this).classed("hover",!1),p.elementMouseout({point:b,series:a[0],pointIndex:c,seriesIndex:0,e:d3.event})}).on("click",function(a,b){p.elementClick({value:i(a,b),data:a,index:b,pos:[f(h(a,b)),g(i(a,b))],e:d3.event,id:e}),d3.event.stopPropagation()}).on("dblclick",function(a,b){p.elementDblClick({value:i(a,b),data:a,index:b,pos:[f(h(a,b)),g(i(a,b))],e:d3.event,id:e}),d3.event.stopPropagation()});A.attr("class",function(a,b,c){return(i(a,b)<0?"nv-bar negative":"nv-bar positive")+" nv-bar-"+c+"-"+b}).attr("transform",function(b,c){return"translate("+(f(h(b,c))-q/a[0].values.length*.5)+",0)"}).attr("width",q/a[0].values.length*.9),d3.transition(A).attr("y",function(a,b){return g(Math.max(0,i(a,b)))}).attr("height",function(a,b){return Math.abs(g(i(a,b))-g(0))})});return q}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=Math.floor(Math.random()*1e4),f=d3.scale.linear(),g=d3.scale.linear(),h=function(a){return a.x},i=function(a){return a.y},j=[],k=[],l=!0,m=a.utils.defaultColor(),n,o,p=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout");q.dispatch=p,q.x=function(a){if(!arguments.length)return h;h=a;return q},q.y=function(a){if(!arguments.length)return i;i=a;return q},q.margin=function(a){if(!arguments.length)return b;b=a;return q},q.width=function(a){if(!arguments.length)return c;c=a;return q},q.height=function(a){if(!arguments.length)return d;d=a;return q},q.xScale=function(a){if(!arguments.length)return f;f=a;return q},q.yScale=function(a){if(!arguments.length)return g;g=a;return q},q.xDomain=function(a){if(!arguments.length)return n;n=a;return q},q.yDomain=function(a){if(!arguments.length)return o;o=a;return q},q.forceX=function(a){if(!arguments.length)return j;j=a;return q},q.forceY=function(a){if(!arguments.length)return k;k=a;return q},q.clipEdge=function(a){if(!arguments.length)return l;l=a;return q},q.color=function(b){if(!arguments.length)return m;m=a.utils.getColor(b);return q},q.id=function(a){if(!arguments.length)return e;e=a;return q};return q},a.models.bullet=function(){function k(b){b.each(function(b,i){var k=g-a.left-a.right,l=h-a.top-a.bottom,m=d3.select(this),n=d.call(this,b,i).slice().sort(d3.descending),o=e.call(this,b,i).slice().sort(d3.descending),p=f.call(this,b,i).slice().sort(d3.descending),q=d3.scale.linear().domain([0,Math.max(n[0],o[0],p[0])]).range(c?[k,0]:[0,k]),r=this.__chart__||d3.scale.linear().domain([0,Infinity]).range(q.range());this.__chart__=q;var s=m.selectAll("g.nv-wrap.nv-bullet").data([b]),t=s.enter().append("g").attr("class","nvd3 nv-wrap nv-bullet"),u=t.append("g"),v=s.select("g");s.attr("transform","translate("+a.left+","+a.top+")");var w=function(a){return Math.abs(r(a)-r(0))},x=function(a){return Math.abs(q(a)-q(0))},y=v.selectAll("rect.nv-range").data(n);y.enter().append("rect").attr("class",function(a,b){return"nv-range nv-s"+b}).attr("width",w).attr("height",l).attr("x",c?r:0).on("mouseover",function(a,b){j.elementMouseover({value:a,label:b<=0?"Maximum":b>1?"Minimum":"Mean",pos:[q(a),l/2]})}).on("mouseout",function(a,b){j.elementMouseout({value:a,label:b<=0?"Minimum":b>=1?"Maximum":"Mean"})}),d3.transition(y).attr("x",c?q:0).attr("width",x).attr("height",l);var z=v.selectAll("rect.nv-measure").data(p);z.enter().append("rect").attr("class",function(a,b){return"nv-measure nv-s"+b}).attr("width",w).attr("height",l/3).attr("x",c?r:0).attr("y",l/3).on("mouseover",function(a){j.elementMouseover({value:a,label:"Current",pos:[q(a),l/2]})}).on("mouseout",function(a){j.elementMouseout({value:a,label:"Current"})}),d3.transition(z).attr("width",x).attr("height",l/3).attr("x",c?q:0).attr("y",l/3);var A=v.selectAll("path.nv-markerTriangle").data(o),B=l/6;A.enter().append("path").attr("class","nv-markerTriangle").attr("transform",function(a){return"translate("+r(a)+","+l/2+")"}).attr("d","M0,"+B+"L"+B+","+ -B+" "+ -B+","+ -B+"Z").on("mouseover",function(a,b){j.elementMouseover({value:a,label:"Previous",pos:[q(a),l/2]})}).on("mouseout",function(a,b){j.elementMouseout({value:a,label:"Previous"})}),d3.transition(A).attr("transform",function(a){return"translate("+q(a)+","+l/2+")"}),A.exit().remove()}),d3.timer.flush();return k}var a={top:0,right:0,bottom:0,left:0},b="left",c=!1,d=function(a){return a.ranges},e=function(a){return a.markers},f=function(a){return a.measures},g=380,h=30,i=null,j=d3.dispatch("elementMouseover","elementMouseout");k.dispatch=j,k.orient=function(a){if(!arguments.length)return b;b=a,c=b=="right"||b=="bottom";return k},k.ranges=function(a){if(!arguments.length)return d;d=a;return k},k.markers=function(a){if(!arguments.length)return e;e=a;return k},k.measures=function(a){if(!arguments.length)return f;f=a;return k},k.width=function(a){if(!arguments.length)return g;g=a;return k},k.height=function(a){if(!arguments.length)return h;h=a;return k},k.margin=function(b){if(!arguments.length)return a;a=b;return k},k.tickFormat=function(a){if(!arguments.length)return i;i=a;return k};return k},a.models.bulletChart=function(){function q(b){b.each(function(b,l){var m=d3.select(this),q=(h||parseInt(m.style("width"))||960)-d.left-d.right,r=i-d.top-d.bottom,s=this,t=e.call(this,b,l).slice().sort(d3.descending),u=f.call(this,b,l).slice().sort(d3.descending),v=g.call(this,b,l).slice().sort(d3.descending),w=m.selectAll("g.nv-wrap.nv-bulletChart").data([b]),x=w.enter().append("g").attr("class","nvd3 nv-wrap nv-bulletChart"),y=x.append("g");y.append("g").attr("class","nv-bulletWrap"),y.append("g").attr("class","nv-titles");var z=w.select("g");w.attr("transform","translate("+d.left+","+d.top+")");var A=d3.scale.linear().domain([0,Math.max(t[0],u[0],v[0])]).range(c?[q,0]:[0,q]),B=this.__chart__||d3.scale.linear().domain([0,Infinity]).range(A.range());this.__chart__=A;var C=function(a){return Math.abs(B(a)-B(0))},D=function(a){return Math.abs(A(a)-A(0))},E=z.select(".nv-titles").append("g").attr("text-anchor","end").attr("transform","translate(-6,"+(i-d.top-d.bottom)/2+")");E.append("text").attr("class","nv-title").text(function(a){return a.title}),E.append("text").attr("class","nv-subtitle").attr("dy","1em").text(function(a){return a.subtitle}),o.width(q).height(r);var F=z.select(".nv-bulletWrap");d3.transition(F).call(o);var G=j||A.tickFormat(8),H=z.selectAll("g.nv-tick").data(A.ticks(8),function(a){return this.textContent||G(a)}),I=H.enter().append("g").attr("class","nv-tick").attr("transform",function(a){return"translate("+B(a)+",0)"}).style("opacity",1e-6);I.append("line").attr("y1",r).attr("y2",r*7/6),I.append("text").attr("text-anchor","middle").attr("dy","1em").attr("y",r*7/6).text(G),d3.transition(I).attr("transform",function(a){return"translate("+A(a)+",0)"}).style("opacity",1);var J=d3.transition(H).attr("transform",function(a){return"translate("+A(a)+",0)"}).style("opacity",1);J.select("line").attr("y1",r).attr("y2",r*7/6),J.select("text").attr("y",r*7/6),d3.transition(H.exit()).attr("transform",function(a){return"translate("+A(a)+",0)"}).style("opacity",1e-6).remove(),o.dispatch.on("elementMouseover.tooltip",function(a){n.tooltipShow(a)}),k&&n.on("tooltipShow",function(a){p(a,s.parentNode)}),o.dispatch.on("elementMouseout.tooltip",function(a){n.tooltipHide(a)}),k&&n.on("tooltipHide",a.tooltip.cleanup)}),d3.timer.flush()}var b="left",c=!1,d={top:5,right:40,bottom:20,left:120},e=function(a){return a.ranges},f=function(a){return a.markers},g=function(a){return a.measures},h=null,i=55,j=null,k=!0,l=function(a,b,c,d,e){return"

"+d.label+"

"+"

"+d.value+"

"},m="No Data Available.",n=d3.dispatch("tooltipShow","tooltipHide"),o=a.models.bullet(),p=function(b,c){var c=document.getElementById("chart"),e=b.pos[0]+c.offsetLeft+d.left,f=b.pos[1]+c.offsetTop+d.top,g="

"+b.label+"

"+"

"+b.value+"

";a.tooltip.show([e,f],g,b.value<0?"e":"w",null,c)};q.dispatch=n,q.bullet=o,q.orient=function(a){if(!arguments.length)return b;b=a,c=b=="right"||b=="bottom";return q},q.ranges=function(a){if(!arguments.length)return e;e=a;return q},q.markers=function(a){if(!arguments.length)return f;f=a;return q},q.measures=function(a){if(!arguments.length)return g;g=a;return q},q.width=function(a){if(!arguments.length)return h;h=a;return q},q.height=function(a){if(!arguments.length)return i;i=a;return q},q.margin=function(a){if(!arguments.length)return d;d=a;return q},q.tickFormat=function(a){if(!arguments.length)return j;j=a;return q},q.tooltips=function(a){if(!arguments.length)return k;k=a;return q},q.tooltipContent=function(a){if(!arguments.length)return l;l=a;return q},q.noData=function(a){if(!arguments.length)return m;m=a;return q};return q},a.models.cumulativeLineChart=function(){function C(a,c){return c.map(function(c,d){var e=b.y()(c.values[a],a);c.values=c.values.map(function(a,c){a.display={y:(b.y()(a,c)-e)/(1+e)};return a});return c})}function B(a){a.each(function(o){var y=d3.select(this).classed("nv-chart-"+r,!0),z=this,A=(i||parseInt(y.style("width"))||960)-g.left-g.right,D=(j||parseInt(y.style("height"))||400)-g.top-g.bottom;if(!o||!o.length||!o.filter(function(a){return a.values.length}).length){y.append("text").attr("class","nvd3 nv-noData").attr("x",A/2).attr("y",D/2).attr("dy","-.7em").style("text-anchor","middle").text(s);return B}y.select(".nv-noData").remove(),p=b.xScale(),q=b.yScale();if(!n){var E=o.filter(function(a){return!a.disabled}).map(function(a,c){var d=d3.extent(a.values,b.y());return[(d[0]-d[1])/(1+d[1]),(d[1]-d[0])/(1+d[0])]}),F=[d3.min(E,function(a){return a[0]}),d3.max(E,function(a){return a[1]})];b.yDomain(F)}else b.yDomain(null);u.domain([0,o[0].values.length-1]).range([0,A]).clamp(!0);var o=C(v.i,o),G=y.selectAll("g.nv-wrap.nv-cumulativeLine").data([o]),H=G.enter().append("g").attr("class","nvd3 nv-wrap nv-cumulativeLine").append("g"),I=G.select("g");H.append("g").attr("class","nv-x nv-axis"),H.append("g").attr("class","nv-y nv-axis"),H.append("g").attr("class","nv-linesWrap"),H.append("g").attr("class","nv-legendWrap"),H.append("g").attr("class","nv-controlsWrap"),k&&(e.width(A),I.select(".nv-legendWrap").datum(o).call(e),g.top!=e.height()&&(g.top=e.height(),D=(j||parseInt(y.style("height"))||400)-g.top-g.bottom),I.select(".nv-legendWrap").attr("transform","translate(0,"+ -g.top+")"));if(m){var J=[{key:"Re-scale y-axis",disabled:!n}];f.width(140).color(["#444","#444","#444"]),I.select(".nv-controlsWrap").datum(J).attr("transform","translate(0,"+ -g.top+")").call(f)}G.attr("transform","translate("+g.left+","+g.top+")"),b.y(function(a){return a.display.y}).width(A).height(D).color(o.map(function(a,b){return a.color||h(a,b)}).filter(function(a,b){return!o[b].disabled}));var K=I.select(".nv-linesWrap").datum(o.filter(function(a){return!a.disabled}));d3.transition(K).call(b);var L=K.selectAll(".nv-indexLine").data([v]);L.enter().append("rect").attr("class","nv-indexLine").attr("width",3).attr("x",-2).attr("fill","red").attr("fill-opacity",.5).call(x),L.attr("transform",function(a){return"translate("+u(a.i)+",0)"}).attr("height",D),c.scale(p).ticks(A/100).tickSize(-D,0),I.select(".nv-x.nv-axis").attr("transform","translate(0,"+q.range()[0]+")"),d3.transition(I.select(".nv-x.nv-axis")).call(c),d.scale(q).ticks(D/36).tickSize(-A,0),d3.transition(I.select(".nv-y.nv-axis")).call(d),f.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,n=!b.disabled,a.transition().call(B)}),e.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,o.filter(function(a){return!a.disabled}).length||o.map(function(a){a.disabled=!1,G.selectAll(".nv-series").classed("disabled",!1);return a}),a.transition().call(B)}),t.on("tooltipShow",function(a){l&&w(a,z.parentNode)}),B.update=function(){B(a)},B.container=this});return B}function A(a,b){B.update()}function z(a,b){a.x+=d3.event.dx,a.i=Math.round(u.invert(a.x)),d3.select(this).attr("transform","translate("+u(a.i)+",0)")}function y(a,b){}var b=a.models.line(),c=a.models.axis(),d=a.models.axis(),e=a.models.legend(),f=a.models.legend(),g={top:30,right:30,bottom:50,left:60},h=a.utils.defaultColor(),i=null,j=null,k=!0,l=!0,m=!0,n=!0,o=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" at "+b+"

"},p,q,r=b.id(),s="No Data Available.",t=d3.dispatch("tooltipShow","tooltipHide");c.orient("bottom").tickPadding(5),d.orient("left");var u=d3.scale.linear(),v={i:0,x:0},w=function(e,f){var g=e.pos[0]+(f.offsetLeft||0),h=e.pos[1]+(f.offsetTop||0),i=c.tickFormat()(b.x()(e.point,e.pointIndex)),j=d.tickFormat()(b.y()(e.point,e.pointIndex)),k=o(e.series.key,i,j,e,B);a.tooltip.show([g,h],k,null,null,f)},x=d3.behavior.drag().on("dragstart",y).on("drag",z).on("dragend",A);b.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+g.left,a.pos[1]+g.top],t.tooltipShow(a)}),b.dispatch.on("elementMouseout.tooltip",function(a){t.tooltipHide(a)}),t.on("tooltipHide",function(){l&&a.tooltip.cleanup()}),B.dispatch=t,B.lines=b,B.legend=e,B.xAxis=c,B.yAxis=d,d3.rebind(B,b,"defined","isArea","x","y","size","xDomain","yDomain","forceX","forceY","interactive","clipEdge","clipVoronoi","id"),B.margin=function(a){if(!arguments.length)return g;g=a;return B},B.width=function(a){if(!arguments.length)return i;i=a;return B},B.height=function(a){if(!arguments.length)return j;j=a;return B},B.color=function(b){if(!arguments.length)return h;h=a.utils.getColor(b),e.color(h);return B},B.showControls=function(a){if(!arguments.length)return m;m=a;return B},B.showLegend=function(a){if(!arguments.length)return k;k=a;return B},B.tooltips=function(a){if(!arguments.length)return l;l=a;return B},B.tooltipContent=function(a){if(!arguments.length)return o;o=a;return B},B.noData=function(a){if(!arguments.length)return s;s=a;return B};return B},a.models.discreteBar=function(){function s(a){a.each(function(a){var e=c-b.left-b.right,s=d-b.top-b.bottom,t=d3.select(this);a=a.map(function(a,b){a.values=a.values.map(function(a){a.series=b;return a});return a});var u=n&&o?[]:a.map(function(a){return a.values.map(function(a,b){return{x:h(a,b),y:i(a,b),y0:a.y0}})});f.domain(n||d3.merge(u).map(function(a){return a.x})).rangeBands([0,e],.1),g.domain(o||d3.extent(d3.merge(u).map(function(a){return a.y}).concat(j))),l?g.range([s-(g.domain()[0]<0?12:0),g.domain()[1]>0?12:0]):g.range([s,0]),q=q||f,r=r||g.copy().range([g(0),g(0)]);var v=t.selectAll("g.nv-wrap.nv-discretebar").data([a]),w=v.enter().append("g").attr("class","nvd3 nv-wrap nv-discretebar"),z=w.append("g"),A=v.select("g");z.append("g").attr("class","nv-groups"),v.attr("transform","translate("+b.left+","+b.top+")");var B=v.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});B.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),d3.transition(B.exit()).style("stroke-opacity",1e-6).style("fill-opacity",1e-6).remove(),B.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}),d3.transition(B).style("stroke-opacity",1).style("fill-opacity",.75);var C=B.selectAll("g.nv-bar").data(function(a){return a.values});C.exit().remove();var D=C.enter().append("g").attr("transform",function(a,b,c){return"translate("+f(h(a,b))+", "+g(0)+")"}).on("mouseover",function(b,c){d3.select(this).classed("hover",!0),p.elementMouseover({value:i(b,c),point:b,series:a[b.series],pos:[f(h(b,c))+f.rangeBand()*(b.series+.5)/a.length,g(i(b,c))],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("mouseout",function(b,c){d3.select(this).classed("hover",!1),p.elementMouseout({value:i(b,c),point:b,series:a[b.series],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("click",function(b,c){p.elementClick({value:i(b,c),point:b,series:a[b.series],pos:[f(h(b,c))+f.rangeBand()*(b.series+.5)/a.length,g(i(b,c))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()}).on("dblclick",function(b,c){p.elementDblClick({value:i(b,c),point:b,series:a[b.series],pos:[f(h(b,c))+f.rangeBand()*(b.series+.5)/a.length,g(i(b,c))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()});D.append("rect").attr("height",0).attr("width",f.rangeBand()/a.length).style("fill",function(a,b){return a.color||k(a,b)}).style("stroke",function(a,b){return a.color||k(a,b)}),l?(D.append("text").attr("text-anchor","middle"),C.selectAll("text").attr("x",f.rangeBand()/2).attr("y",function(a,b){return i(a,b)<0?g(i(a,b))-g(0)+12:-4}).text(function(a,b){return m(i(a,b))})):C.selectAll("text").remove(),C.attr("class",function(a,b){return i(a,b)<0?"nv-bar negative":"nv-bar positive"}).attr("transform",function(a,b){return"translate("+f(h(a,b))+", "+(i(a,b)<0?r(0):r(i(a,b)))+")"}).selectAll("rect").attr("width",f.rangeBand()/a.length),d3.transition(C).attr("transform",function(a,b){return"translate("+f(h(a,b))+", "+(i(a,b)<0?g(0):g(i(a,b)))+")"}).selectAll("rect").attr("height",function(a,b){return Math.abs(g(i(a,b))-g(0))}),q=f.copy(),r=g.copy()});return s}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=Math.floor(Math.random()*1e4),f=d3.scale.ordinal(),g=d3.scale.linear(),h=function(a){return a.x},i=function(a){return a.y},j=[0],k=a.utils.defaultColor(),l=!1,m=d3.format(",.2f"),n,o,p=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout"),q,r;s.dispatch=p,s.x=function(a){if(!arguments.length)return h;h=a;return s},s.y=function(a){if(!arguments.length)return i;i=a;return s},s.margin=function(a){if(!arguments.length)return b;b=a;return s},s.width=function(a){if(!arguments.length)return c;c=a;return s},s.height=function(a){if(!arguments.length)return d;d=a;return s},s.xScale=function(a){if(!arguments.length)return f;f=a;return s},s.yScale=function(a){if(!arguments.length)return g;g=a;return s},s.xDomain=function(a){if(!arguments.length)return n;n=a;return s},s.yDomain=function(a){if(!arguments.length)return o;o=a;return s},s.forceY=function(a){if(!arguments.length)return j;j=a;return s},s.color=function(b){if(!arguments.length)return k;k=a.utils.getColor(b);return s},s.id=function(a){if(!arguments.length)return e;e=a;return s},s.showValues=function(a){if(!arguments.length)return l;l=a;return s},s.valueFormat=function(a){if(!arguments.length)return m;m=a;return s};return s},a.models.discreteBarChart=function(){function r(e){e.each(function(h){var q=d3.select(this),s=this,t=(c||parseInt(q.style("width"))||960)-b.left-b.right,u=(d||parseInt(q.style("height"))||400)-b.top-b.bottom;if(!h||!h.length||!h.filter(function(a){return a.values.length}).length){q.append("text").attr("class","nvd3 nv-noData").attr("x",t/2).attr("y",u/2).attr("dy","-.7em").style("text-anchor","middle").text(i);return r}q.select(".nv-noData").remove(),j.width(t).height(u);var v=q.selectAll("g.nv-wrap.nv-discreteBarWithAxes").data([h]),w=v.enter().append("g").attr("class","nvd3 nv-wrap nv-discreteBarWithAxes").append("g"),z=w.append("defs");w.append("g").attr("class","nv-x nv-axis"),w.append("g").attr("class","nv-y nv-axis"),w.append("g").attr("class","nv-barsWrap");var A=v.select("g");A.attr("transform","translate("+b.left+","+b.top+")");var B=A.select(".nv-barsWrap").datum(h.filter(function(a){return!a.disabled}));d3.transition(B).call(j),z.append("clipPath").attr("id","nv-x-label-clip-"+j.id()).append("rect"),A.select("#nv-x-label-clip-"+j.id()+" rect").attr("width",k.rangeBand()*(f?2:1)).attr("height",16).attr("x",-k.rangeBand()/(f?1:2)),m.ticks(t/100).tickSize(-u,0),A.select(".nv-x.nv-axis").attr("transform","translate(0,"+(l.range()[0]+(j.showValues()&&l.domain()[0]<0?16:0))+")"),A.select(".nv-x.nv-axis").transition().duration(0).call(m);var C=A.select(".nv-x.nv-axis").selectAll("g");f&&C.selectAll("text").attr("transform",function(a,b,c){return"translate(0,"+(c%2==0?"0":"12")+")"}),n.ticks(u/36).tickSize(-t,0),d3.transition(A.select(".nv-y.nv-axis")).call(n),j.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],o.tooltipShow(a)}),g&&o.on("tooltipShow",function(a){p(a,s.parentNode)}),j.dispatch.on("elementMouseout.tooltip",function(a){o.tooltipHide(a)}),g&&o.on("tooltipHide",a.tooltip.cleanup),r.update=function(){e.transition().call(r)},r.container=this});return r}var b={top:10,right:10,bottom:50,left:60},c=null,d=null,e=a.utils.getColor(),f=!1,g=!0,h=function(a,b,c,d,e){return"

"+b+"

"+"

"+c+"

"},i="No Data Available.",j=a.models.discreteBar(),k=j.xScale(),l=j.yScale(),m=a.models.axis().scale(k).orient("bottom").highlightZero(!1).showMaxMin(!1),n=a.models.axis().scale(l).orient("left"),o=d3.dispatch("tooltipShow","tooltipHide");m.tickFormat(function(a){return a}),n.tickFormat(d3.format(",.1f"));var p=function(b,c){var d=b.pos[0]+(c.offsetLeft||0),e=b.pos[1]+(c.offsetTop||0),f=m.tickFormat()(j.x()(b.point,b.pointIndex)),g=n.tickFormat()(j.y()(b.point,b.pointIndex)),i=h(b.series.key,f,g,b,r);a.tooltip.show([d,e],i,b.value<0?"n":"s",null,c)},q=[{key:"Grouped"},{key:"Stacked",disabled:!0}];r.dispatch=o,r.discretebar=j,r.xAxis=m,r.yAxis=n,d3.rebind(r,j,"x","y","xDomain","yDomain","forceX","forceY","id","showValues","valueFormat"),r.margin=function(a){if(!arguments.length)return b;b=a;return r},r.width=function(a){if(!arguments.length)return c;c=a;return r},r.height=function(a){if(!arguments.length)return d;d=a;return r},r.color=function(b){if(!arguments.length)return e;e=a.utils.getColor(b),j.color(e);return r},r.staggerLabels=function(a){if(!arguments.length)return f;f=a;return r},r.tooltips=function(a){if(!arguments.length)return g;g=a;return r},r.tooltipContent=function(a){if(!arguments.length)return h -;h=a;return r},r.noData=function(a){if(!arguments.length)return i;i=a;return r};return r},a.models.distribution=function(){function k(a){a.each(function(a){var i=c-(e==="x"?b.left+b.right:b.top+b.bottom),k=e=="x"?"y":"x",l=d3.select(this);j=j||h;var m=l.selectAll("g.nv-distribution").data([a]),n=m.enter().append("g").attr("class","nvd3 nv-distribution"),o=n.append("g"),p=m.select("g");m.attr("transform","translate("+b.left+","+b.top+")");var q=p.selectAll("g.nv-dist").data(function(a){return a},function(a){return a.key});q.enter().append("g"),q.attr("class",function(a,b){return"nv-dist nv-series-"+b}).style("stroke",function(a,b){return g(a,b)});var r=q.selectAll("line.nv-dist"+e).data(function(a){return a.values});r.enter().append("line").attr(e+"1",function(a,b){return j(f(a,b))}).attr(e+"2",function(a,b){return j(f(a,b))}),d3.transition(q.exit().selectAll("line.nv-dist"+e)).attr(e+"1",function(a,b){return h(f(a,b))}).attr(e+"2",function(a,b){return h(f(a,b))}).style("stroke-opacity",0).remove(),r.attr("class",function(a,b){return"nv-dist"+e+" nv-dist"+e+"-"+b}).attr(k+"1",0).attr(k+"2",d),d3.transition(r).attr(e+"1",function(a,b){return h(f(a,b))}).attr(e+"2",function(a,b){return h(f(a,b))}),j=h.copy()});return k}var b={top:0,right:0,bottom:0,left:0},c=400,d=8,e="x",f=function(a){return a[e]},g=a.utils.defaultColor(),h=d3.scale.linear(),i,j;k.margin=function(a){if(!arguments.length)return b;b=a;return k},k.width=function(a){if(!arguments.length)return c;c=a;return k},k.axis=function(a){if(!arguments.length)return e;e=a;return k},k.size=function(a){if(!arguments.length)return d;d=a;return k},k.getData=function(a){if(!arguments.length)return f;f=d3.functor(a);return k},k.scale=function(a){if(!arguments.length)return h;h=a;return k},k.color=function(b){if(!arguments.length)return g;g=a.utils.getColor(b);return k};return k},a.models.indentedTree=function(){function j(a){a.each(function(e){function B(a){var b=a.values||a._values;return b&&b.length}function A(a){return a._values&&a._values.length}function z(a){return a._values&&a._values.length?iconOpen:a.values&&a.values.length?iconClose:""}function y(a,b,c){d3.event.stopPropagation();if(d3.event.shiftKey&&!c){d3.event.shiftKey=!1,a.values&&a.values.forEach(function(a){(a.values||a._values)&&y(a,0,!0)});return!0}if(!B(a))return!0;a.values?(a._values=a.values,a.values=null):(a.values=a._values,a._values=null),j.update()}var f=c-b.left-b.right,k=d-b.top-b.bottom;j.update=function(){a.transition().call(j)};var l=0,m=1,n=d3.layout.tree().children(function(a){return a.values}).size([d,childIndent]);e[0].key||(e[0].key=h);var o=n.nodes(e[0]),p=d3.select(this).selectAll("div").data([[o]]),q=p.enter().append("div").attr("class","nvd3 nv-wrap nv-indentedtree"),r=q.append("table"),s=p.select("table").attr("width","100%").attr("class",tableClass);if(g){var t=r.append("thead"),u=t.append("tr");columns.forEach(function(a){u.append("th").attr("width",a.width?a.width:"10%").style("text-align",a.type=="numeric"?"right":"left").append("span").text(a.label)})}var v=s.selectAll("tbody").data(function(a){return a});v.enter().append("tbody"),m=d3.max(o,function(a){return a.depth}),n.size([d,m*childIndent]);var w=v.selectAll("tr").data(function(a){return a},function(a){return a.id||a.id==++l});w.exit().remove(),w.select("img.nv-treeicon").attr("src",z).classed("folded",A);var x=w.enter().append("tr");columns.forEach(function(a,b){var c=x.append("td").style("padding-left",function(a){return(b?0:a.depth*childIndent+12+(z(a)?0:16))+"px"},"important").style("text-align",a.type=="numeric"?"right":"left");b==0&&c.append("img").classed("nv-treeicon",!0).classed("nv-folded",A).attr("src",z).style("width","14px").style("height","14px").style("padding","0 1px").style("display",function(a){return z(a)?"inline-block":"none"}).on("click",y),c.append("span").attr("class",d3.functor(a.classes)).text(function(b){return a.format?a.format(b):b[a.key]||"-"}),a.showCount&&c.append("span").attr("class","nv-childrenCount").text(function(a){return a.values&&a.values.length||a._values&&a._values.length?"("+(a.values&&a.values.length||a._values&&a._values.length)+")":""}),a.click&&c.select("span").on("click",a.click)}),w.order().on("click",function(a){i.elementClick({row:this,data:a,pos:[a.x,a.y]})}).on("dblclick",function(a){i.elementDblclick({row:this,data:a,pos:[a.x,a.y]})}).on("mouseover",function(a){i.elementMouseover({row:this,data:a,pos:[a.x,a.y]})}).on("mouseout",function(a){i.elementMouseout({row:this,data:a,pos:[a.x,a.y]})})});return j}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=a.utils.defaultColor(),f=Math.floor(Math.random()*1e4),g=!0,h="No Results found.";childIndent=20,columns=[{key:"key",label:"Name",type:"text"}],tableClass=null,iconOpen="images/grey-plus.png",iconClose="images/grey-minus.png";var i=d3.dispatch("elementClick","elementDblclick","elementMouseover","elementMouseout");j.margin=function(a){if(!arguments.length)return b;b=a;return j},j.width=function(a){if(!arguments.length)return c;c=a;return j},j.height=function(a){if(!arguments.length)return d;d=a;return j},j.color=function(b){if(!arguments.length)return e;e=a.utils.getColor(b),scatter.color(e);return j},j.id=function(a){if(!arguments.length)return f;f=a;return j},j.header=function(a){if(!arguments.length)return g;g=a;return j},j.noResultsText=function(a){if(!arguments.length)return h;h=a;return j},j.columns=function(a){if(!arguments.length)return columns;columns=a;return j},j.tableClass=function(a){if(!arguments.length)return tableClass;tableClass=a;return j},j.iconOpen=function(a){if(!arguments.length)return iconOpen;iconOpen=a;return j},j.iconClose=function(a){if(!arguments.length)return iconClose;iconClose=a;return j};return j},a.models.legend=function(){function i(a){a.each(function(a){var i=c-b.left-b.right,j=d3.select(this),l=j.selectAll("g.nv-legend").data([a]),m=l.enter().append("g").attr("class","nvd3 nv-legend").append("g"),n=l.select("g");l.attr("transform","translate("+b.left+","+b.top+")");var o=n.selectAll(".nv-series").data(function(a){return a}),p=o.enter().append("g").attr("class","nv-series").on("mouseover",function(a,b){h.legendMouseover(a,b)}).on("mouseout",function(a,b){h.legendMouseout(a,b)}).on("click",function(a,b){h.legendClick(a,b)}).on("dblclick",function(a,b){h.legendDblclick(a,b)});p.append("circle").style("fill",function(a,b){return a.color||f(a,b)}).style("stroke",function(a,b){return a.color||f(a,b)}).style("stroke-width",2).attr("r",5),p.append("text").text(e).attr("text-anchor","start").attr("dy",".32em").attr("dx","8"),o.classed("disabled",function(a){return a.disabled}),o.exit().remove();if(g){var q=[];o.each(function(a,b){q.push(d3.select(this).select("text").node().getComputedTextLength()+28)});var r=0,s=0,t=[];while(si&&r>1){t=[],r--;for(k=0;k(t[k%r]||0)&&(t[k%r]=q[k]);s=t.reduce(function(a,b,c,d){return a+b})}var u=[];for(var v=0,w=0;vz&&(z=y);return"translate("+A+","+x+")"}),n.attr("transform","translate("+(c-b.right-z)+","+b.top+")"),d=b.top+b.bottom+x+15}});return i}var b={top:5,right:0,bottom:5,left:0},c=400,d=20,e=function(a){return a.key},f=a.utils.defaultColor(),g=!0,h=d3.dispatch("legendClick","legendDblclick","legendMouseover","legendMouseout");i.dispatch=h,i.margin=function(a){if(!arguments.length)return b;b=a;return i},i.width=function(a){if(!arguments.length)return c;c=a;return i},i.height=function(a){if(!arguments.length)return d;d=a;return i},i.key=function(a){if(!arguments.length)return e;e=a;return i},i.color=function(b){if(!arguments.length)return f;f=a.utils.getColor(b);return i},i.align=function(a){if(!arguments.length)return g;g=a;return i};return i},a.models.line=function(){function r(a){a.each(function(a){var r=c-b.left-b.right,s=d-b.top-b.bottom,t=d3.select(this);l=o.xScale(),m=o.yScale(),p=p||l,q=q||m;var u=t.selectAll("g.nv-wrap.nv-line").data([a]),v=u.enter().append("g").attr("class","nvd3 nv-wrap nv-line"),w=v.append("defs"),z=v.append("g"),A=u.select("g");z.append("g").attr("class","nv-groups"),z.append("g").attr("class","nv-scatterWrap"),u.attr("transform","translate("+b.left+","+b.top+")"),o.width(r).height(s);var B=u.select(".nv-scatterWrap");d3.transition(B).call(o),w.append("clipPath").attr("id","nv-edge-clip-"+f).append("rect"),u.select("#nv-edge-clip-"+f+" rect").attr("width",r).attr("height",s),A.attr("clip-path",k?"url(#nv-edge-clip-"+f+")":""),B.attr("clip-path",k?"url(#nv-edge-clip-"+f+")":"");var C=u.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});C.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),d3.transition(C.exit()).style("stroke-opacity",1e-6).style("fill-opacity",1e-6).remove(),C.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}).style("fill",function(a,b){return e(a,b)}).style("stroke",function(a,b){return e(a,b)}),d3.transition(C).style("stroke-opacity",1).style("fill-opacity",.5);var D=C.selectAll("path.nv-area").data(function(a){return[a]});D.enter().append("path").filter(j).attr("class","nv-area").attr("d",function(a){return d3.svg.area().interpolate(n).defined(i).x(function(a,b){return p(g(a,b))}).y0(function(a,b){return q(h(a,b))}).y1(function(a,b){return q(m.domain()[0]<=0?m.domain()[1]>=0?0:m.domain()[1]:m.domain()[0])}).apply(this,[a.values])}),d3.transition(C.exit().selectAll("path.nv-area")).attr("d",function(a){return d3.svg.area().interpolate(n).defined(i).x(function(a,b){return p(g(a,b))}).y0(function(a,b){return q(h(a,b))}).y1(function(a,b){return q(m.domain()[0]<=0?m.domain()[1]>=0?0:m.domain()[1]:m.domain()[0])}).apply(this,[a.values])}),d3.transition(D.filter(j)).attr("d",function(a){return d3.svg.area().interpolate(n).defined(i).x(function(a,b){return p(g(a,b))}).y0(function(a,b){return q(h(a,b))}).y1(function(a,b){return q(m.domain()[0]<=0?m.domain()[1]>=0?0:m.domain()[1]:m.domain()[0])}).apply(this,[a.values])});var E=C.selectAll("path.nv-line").data(function(a){return[a.values]});E.enter().append("path").attr("class",function(a){return"nv-line"}).attr("d",d3.svg.line().interpolate(n).defined(i).x(function(a,b){return p(g(a,b))}).y(function(a,b){return q(h(a,b))})),d3.transition(C.exit().selectAll("path.nv-line")).attr("d",d3.svg.line().interpolate(n).defined(i).x(function(a,b){return l(g(a,b))}).y(function(a,b){return m(h(a,b))})),d3.transition(E).attr("d",d3.svg.line().interpolate(n).defined(i).x(function(a,b){return l(g(a,b))}).y(function(a,b){return m(h(a,b))})),p=l.copy(),q=m.copy()});return r}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=a.utils.defaultColor(),f=Math.floor(Math.random()*1e4),g=function(a){return a.x},h=function(a){return a.y},i=function(a,b){return!isNaN(h(a,b))&&h(a,b)!==null},j=function(a){return a.area},k=!1,l,m,n="linear",o=a.models.scatter();o.id(f).size(16).sizeDomain([16,256]);var p,q;r.dispatch=o.dispatch,r.scatter=o,d3.rebind(r,o,"interactive","size","xScale","yScale","zScale","xDomain","yDomain","sizeDomain","forceX","forceY","forceSize","clipVoronoi","clipRadius"),r.margin=function(a){if(!arguments.length)return b;b=a;return r},r.width=function(a){if(!arguments.length)return c;c=a;return r},r.height=function(a){if(!arguments.length)return d;d=a;return r},r.x=function(a){if(!arguments.length)return g;g=a,o.x(a);return r},r.y=function(a){if(!arguments.length)return h;h=a,o.y(a);return r},r.clipEdge=function(a){if(!arguments.length)return k;k=a;return r},r.color=function(b){if(!arguments.length)return e;e=a.utils.getColor(b),o.color(e);return r},r.id=function(a){if(!arguments.length)return f;f=a;return r},r.interpolate=function(a){if(!arguments.length)return n;n=a;return r},r.defined=function(a){if(!arguments.length)return i;i=a;return r},r.isArea=function(a){if(!arguments.length)return j;j=d3.functor(a);return r};return r},a.models.lineChart=function(){function r(a){a.each(function(l){var s=d3.select(this),t=this,u=(h||parseInt(s.style("width"))||960)-f.left-f.right,v=(i||parseInt(s.style("height"))||400)-f.top-f.bottom;if(!l||!l.length||!l.filter(function(a){return a.values.length}).length){s.append("text").attr("class","nvd3 nv-noData").attr("x",u/2).attr("y",v/2).attr("dy","-.7em").style("text-anchor","middle").text(o);return r}s.select(".nv-noData").remove(),m=b.xScale(),n=b.yScale();var w=s.selectAll("g.nv-wrap.nv-lineChart").data([l]),z=w.enter().append("g").attr("class","nvd3 nv-wrap nv-lineChart").append("g"),A=w.select("g");z.append("g").attr("class","nv-x nv-axis"),z.append("g").attr("class","nv-y nv-axis"),z.append("g").attr("class","nv-linesWrap"),z.append("g").attr("class","nv-legendWrap"),j&&(e.width(u),A.select(".nv-legendWrap").datum(l).call(e),f.top!=e.height()&&(f.top=e.height(),v=(i||parseInt(s.style("height"))||400)-f.top-f.bottom),w.select(".nv-legendWrap").attr("transform","translate(0,"+ -f.top+")")),w.attr("transform","translate("+f.left+","+f.top+")"),b.width(u).height(v).color(l.map(function(a,b){return a.color||g(a,b)}).filter(function(a,b){return!l[b].disabled}));var B=A.select(".nv-linesWrap").datum(l.filter(function(a){return!a.disabled}));d3.transition(B).call(b),c.scale(m).ticks(u/100).tickSize(-v,0),A.select(".nv-x.nv-axis").attr("transform","translate(0,"+n.range()[0]+")"),d3.transition(A.select(".nv-x.nv-axis")).call(c),d.scale(n).ticks(v/36).tickSize(-u,0),d3.transition(A.select(".nv-y.nv-axis")).call(d),e.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,l.filter(function(a){return!a.disabled}).length||l.map(function(a){a.disabled=!1,w.selectAll(".nv-series").classed("disabled",!1);return a}),a.transition().call(r)}),p.on("tooltipShow",function(a){k&&q(a,t.parentNode)}),r.update=function(){r(a)},r.container=this});return r}var b=a.models.line(),c=a.models.axis(),d=a.models.axis(),e=a.models.legend(),f={top:30,right:20,bottom:50,left:60},g=a.utils.defaultColor(),h=null,i=null,j=!0,k=!0,l=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" at "+b+"

"},m,n,o="No Data Available.",p=d3.dispatch("tooltipShow","tooltipHide");c.orient("bottom").tickPadding(5),d.orient("left");var q=function(e,f){if(f){var g=d3.select(f).select("svg"),h=g.attr("viewBox");if(h){h=h.split(" ");var i=parseInt(g.style("width"))/h[2];e.pos[0]=e.pos[0]*i,e.pos[1]=e.pos[1]*i}}var j=e.pos[0]+(f.offsetLeft||0),k=e.pos[1]+(f.offsetTop||0),m=c.tickFormat()(b.x()(e.point,e.pointIndex)),n=d.tickFormat()(b.y()(e.point,e.pointIndex)),o=l(e.series.key,m,n,e,r);a.tooltip.show([j,k],o,null,null,f)};b.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+f.left,a.pos[1]+f.top],p.tooltipShow(a)}),b.dispatch.on("elementMouseout.tooltip",function(a){p.tooltipHide(a)}),p.on("tooltipHide",function(){k&&a.tooltip.cleanup()}),r.dispatch=p,r.lines=b,r.legend=e,r.xAxis=c,r.yAxis=d,d3.rebind(r,b,"defined","isArea","x","y","size","xScale","yScale","xDomain","yDomain","forceX","forceY","interactive","clipEdge","clipVoronoi","id","interpolate"),r.margin=function(a){if(!arguments.length)return f;f=a;return r},r.width=function(a){if(!arguments.length)return h;h=a;return r},r.height=function(a){if(!arguments.length)return i;i=a;return r},r.color=function(b){if(!arguments.length)return g;g=a.utils.getColor(b),e.color(g);return r},r.showLegend=function(a){if(!arguments.length)return j;j=a;return r},r.tooltips=function(a){if(!arguments.length)return k;k=a;return r},r.tooltipContent=function(a){if(!arguments.length)return l;l=a;return r},r.noData=function(a){if(!arguments.length)return o;o=a;return r};return r},a.models.linePlusBarChart=function(){function w(a){a.each(function(p){var y=d3.select(this),z=this,A=(i||parseInt(y.style("width"))||960)-h.left-h.right,B=(j||parseInt(y.style("height"))||400)-h.top-h.bottom;if(!p||!p.length||!p.filter(function(a){return a.values.length}).length){y.append("text").attr("class","nvd3 nv-noData").attr("x",A/2).attr("y",B/2).attr("dy","-.7em").style("text-anchor","middle").text(t);return w}y.select(".nv-noData").remove(),r=c.yScale(),s=b.yScale();var C=p.filter(function(a){return!a.disabled&&a.bar}),D=p.filter(function(a){return!a.disabled&&!a.bar}),E=p.filter(function(a){return!a.disabled&&a.bar}).map(function(a){return a.values.map(function(a,b){return{x:k(a,b),y:l(a,b)}})}),F=p.filter(function(a){return!a.disabled&&!a.bar}).map(function(a){return a.values.map(function(a,b){return{x:k(a,b),y:l(a,b)}})});q.domain(d3.extent(d3.merge(E.concat(F)),function(a){return a.x})).range([0,A]);var G=d3.select(this).selectAll("g.nv-wrap.nv-linePlusBar").data([p]),H=G.enter().append("g").attr("class","nvd3 nv-wrap nv-linePlusBar").append("g"),I=G.select("g");H.append("g").attr("class","nv-x nv-axis"),H.append("g").attr("class","nv-y1 nv-axis"),H.append("g").attr("class","nv-y2 nv-axis"),H.append("g").attr("class","nv-barsWrap"),H.append("g").attr("class","nv-linesWrap"),H.append("g").attr("class","nv-legendWrap"),n&&(g.width(A/2),I.select(".nv-legendWrap").datum(p.map(function(a){a.originalKey=a.originalKey===undefined?a.key:a.originalKey,a.key=a.originalKey+(a.bar?" (left axis)":" (right axis)");return a})).call(g),h.top!=g.height()&&(h.top=g.height(),B=(j||parseInt(y.style("height"))||400)-h.top-h.bottom),I.select(".nv-legendWrap").attr("transform","translate("+A/2+","+ -h.top+")")),G.attr("transform","translate("+h.left+","+h.top+")"),b.width(A).height(B).color(p.map(function(a,b){return a.color||m(a,b)}).filter(function(a,b){return!p[b].disabled&&!p[b].bar})),c.width(A).height(B).color(p.map(function(a,b){return a.color||m(a,b)}).filter(function(a,b){return!p[b].disabled&&p[b].bar}));var J=I.select(".nv-barsWrap").datum(C.length?C:[{values:[]}]),K=I.select(".nv-linesWrap").datum(D.length?D:[{values:[]}]);d3.transition(J).call(c),d3.transition(K).call(b),d.scale(q).ticks(A/100).tickSize(-B,0),I.select(".nv-x.nv-axis").attr("transform","translate(0,"+r.range()[0]+")"),d3.transition(I.select(".nv-x.nv-axis")).call(d),e.scale(r).ticks(B/36).tickSize(-A,0),d3.transition(I.select(".nv-y1.nv-axis")).style("opacity",C.length?1:0).call(e),f.scale(s).ticks(B/36).tickSize(C.length?0:-A,0),I.select(".nv-y2.nv-axis").style("opacity",D.length?1:0).attr("transform","translate("+q.range()[1]+",0)"),d3.transition(I.select(".nv-y2.nv-axis")).call(f),g.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,p.filter(function(a){return!a.disabled}).length||p.map(function(a){a.disabled=!1,G.selectAll(".nv-series").classed("disabled",!1);return a}),a.transition().call(w)}),u.on("tooltipShow",function(a){o&&v(a,z.parentNode)}),w.update=function(){a.transition().call(w)},w.container=this});return w}var b=a.models.line(),c=a.models.historicalBar(),d=a.models.axis(),e=a.models.axis(),f=a.models.axis(),g=a.models.legend(),h={top:30,right:60,bottom:50,left:60},i=null,j=null,k=function(a){return a.x},l=function(a){return a.y},m=a.utils.defaultColor(),n=!0,o=!0,p=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" at "+b+"

"},q=d3.scale.linear(),r,s,t="No Data Available.",u=d3.dispatch("tooltipShow","tooltipHide");d.orient("bottom").tickPadding(5),e.orient("left"),f.orient("right");var v=function(c,g){var h=c.pos[0]+(g.offsetLeft||0),i=c.pos[1]+(g.offsetTop||0),j=d.tickFormat()(b.x()(c.point,c.pointIndex)),k=(c.series.bar?e:f).tickFormat()(b.y()(c.point,c.pointIndex)),l=p(c.series.key,j,k,c,w);a.tooltip.show([h,i],l,c.value<0?"n":"s",null,g)};b.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+h.left,a.pos[1]+h.top],u.tooltipShow(a)}),b.dispatch.on("elementMouseout.tooltip",function(a){u.tooltipHide(a)}),c.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+h.left,a.pos[1]+h.top],u.tooltipShow(a)}),c.dispatch.on("elementMouseout.tooltip",function(a){u.tooltipHide(a)}),u.on("tooltipHide",function(){o&&a.tooltip.cleanup()}),w.dispatch=u,w.legend=g,w.lines=b,w.bars=c,w.xAxis=d,w.yAxis1=e,w.yAxis2=f,d3.rebind(w,b,"defined","size","clipVoronoi","interpolate"),w.x=function(a){if(!arguments.length)return k;k=a,b.x(a),c.x(a);return w},w.y=function(a){if(!arguments.length)return l;l=a,b.y(a),c.y(a);return w},w.margin=function(a){if(!arguments.length)return h;h=a;return w},w.width=function(a){if(!arguments.length)return i;i=a;return w},w.height=function(a){if(!arguments.length)return j;j=a;return w},w.color=function(b){if(!arguments.length)return m;m=a.utils.getColor(b),g.color(m);return w},w.showLegend=function(a){if(!arguments.length)return n;n=a;return w},w.tooltips=function(a){if(!arguments.length)return o;o=a;return w},w.tooltipContent=function(a){if(!arguments.length)return p;p=a;return w},w.noData=function(a){if(!arguments.length)return t;t=a;return w};return w},a.models.lineWithFocusChart=function(){function A(k){k.each(function(B){function R(){i=y.empty()?null:y.extent(),extent=y.empty()?q.domain():y.extent(),P();var a=L.select(".nv-focus .nv-linesWrap").datum(B.filter(function(a){return!a.disabled}).map(function(a,b){return{key:a.key,values:a.values.filter(function(a,b){return m.x()(a,b)>=extent[0]&&m.x()(a,b)<=extent[1]})}}));d3.transition(a).call(m),d3.transition(L.select(".nv-focus .nv-x.nv-axis")).call(s),d3.transition(L.select(".nv-focus .nv-y.nv-axis")).call(t)}function Q(a){var b=+(a=="e"),c=b?1:-1,d=G/3;return"M"+.5*c+","+d+"A6,6 0 0 "+b+" "+6.5*c+","+(d+6)+"V"+(2*d-6)+"A6,6 0 0 "+b+" "+.5*c+","+2*d+"Z"+"M"+2.5*c+","+(d+8)+"V"+(2*d-8)+"M"+4.5*c+","+(d+8)+"V"+(2*d-8)}function P(){y.empty()||y.extent(i),N.data([y.empty()?q.domain():i]).each(function(a,b){var c=q(a[0])-o.range()[0],d=o.range()[1]-q(a[1]);d3.select(this).select(".left").attr("width",c<0?0:c),d3.select(this).select(".right").attr("x",q(a[1])).attr("width",d<0?0:d)})}var C=d3.select(this),D=this,E=(e||parseInt(C.style("width"))||960)-b.left-b.right,F=(f||parseInt(C.style("height"))||400)-b.top-b.bottom-g,G=g-c.top-c.bottom;if(!B||!B.length||!B.filter(function(a){return a.values.length}).length){C.append("text").attr("class","nvd3 nv-noData").attr("x",E/2).attr("y",F/2).attr("dy","-.7em").style("text-anchor","middle").text(l);return A}C.select(".nv-noData").remove(),y.on("brush",R);var H=C.selectAll("g.nv-wrap.nv-lineWithFocusChart").data([B]),I=H.enter().append("g").attr("class","nvd3 nv-wrap nv-lineWithFocusChart").append("g");I.append("g").attr("class","nv-legendWrap");var J=I.append("g").attr("class","nv-focus");J.append("g").attr("class","nv-x nv-axis"),J.append("g").attr("class","nv-y nv-axis"),J.append("g").attr("class","nv-linesWrap");var K=I.append("g").attr("class","nv-context");K.append("g").attr("class","nv-x nv-axis"),K.append("g").attr("class","nv-y nv-axis"),K.append("g").attr("class","nv-linesWrap"),K.append("g").attr("class","nv-brushBackground"),K.append("g").attr("class","nv-x nv-brush");var L=H.select("g");h&&(w.width(E),L.select(".nv-legendWrap").datum(B).call(w),b.top!=w.height()&&(b.top=w.height(),F=(f||parseInt(C.style("height"))||400)-b.top-b.bottom-g),L.select(".nv-legendWrap").attr("transform","translate(0,"+ -b.top+")")),m.width(E).height(F).color(B.map(function(a,b){return a.color||d(a,b)}).filter(function(a,b){return!B[b].disabled})),n.defined(m.defined()).width(E).height(G).color(B.map(function(a,b){return a.color||d(a,b)}).filter(function(a,b){return!B[b].disabled})),L.attr("transform","translate("+b.left+","+b.top+")"),s.ticks(E/100).tickSize(-F,0),t.ticks(F/36).tickSize(-E,0),L.select(".nv-focus .nv-x.nv-axis").attr("transform","translate(0,"+p.range()[0]+")"),L.select(".nv-context").attr("transform","translate(0,"+(F+b.bottom+c.top)+")");var M=L.select(".nv-context .nv-linesWrap").datum(B.filter(function(a){return!a.disabled}));d3.transition(M).call(n),i&&y.extent(i);var N=L.select(".nv-brushBackground").selectAll("g").data([i||y.extent()]),O=N.enter().append("g");O.append("rect").attr("class","left").attr("x",0).attr("y",0).attr("height",G),O.append("rect").attr("class","right").attr("x",0).attr("y",0).attr("height",G),gBrush=L.select(".nv-x.nv-brush").call(y),gBrush.selectAll("rect").attr("height",G),gBrush.selectAll(".resize").append("path").attr("d",Q),R(),u.ticks(E/100).tickSize(-G,0),L.select(".nv-context .nv-x.nv-axis").attr("transform","translate(0,"+r.range()[0]+")"),d3.transition(L.select(".nv-context .nv-x.nv-axis")).call(u),v.ticks(G/36).tickSize(-E,0),d3.transition(L.select(".nv-context .nv-y.nv-axis")).call(v),L.select(".nv-focus .nv-x.nv-axis").attr("transform","translate(0,"+p.range()[0]+")"),L.select(".nv-context .nv-x.nv-axis").attr("transform","translate(0,"+r.range()[0]+")"),w.dispatch.on("legendClick",function(a,b){a.disabled=!a.disabled,B.filter(function(a){return!a.disabled}).length||B.map(function(a){a.disabled=!1,H.selectAll(".nv-series").classed("disabled",!1);return a}),k.transition().call(A)}),m.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],x.tooltipShow(a)}),j&&x.on("tooltipShow",function(a){z(a,D.parentNode)}),m.dispatch.on("elementMouseout.tooltip",function(a){x.tooltipHide(a)}),j&&x.on("tooltipHide",a.tooltip.cleanup)}),A.update=function(){A(k)},A.container=this;return A}var b={top:30,right:30,bottom:30,left:60},c={top:0,right:30,bottom:20,left:60},d=a.utils.defaultColor(),e=null,f=null,g=100,h=!0,i=null,j=!0,k=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" at "+b+"

"},l="No Data Available.",m=a.models.line().clipEdge(!0),n=a.models.line().interactive(!1),o=m.xScale(),p=m.yScale(),q=n.xScale(),r=n.yScale(),s=a.models.axis().scale(o).orient("bottom").tickPadding(5),t=a.models.axis().scale(p).orient("left"),u=a.models.axis().scale(q).orient("bottom").tickPadding(5),v=a.models.axis().scale(r).orient("left"),w=a.models.legend().height(30),x=d3.dispatch("tooltipShow","tooltipHide"),y=d3.svg.brush().x(q),z=function(b,c){var d=b.pos[0]+(c.offsetLeft||0),e=b.pos[1]+(c.offsetTop||0),f=s.tickFormat()(m.x()(b.point,b.pointIndex)),g=t.tickFormat()(m.y()(b.point,b.pointIndex)),h=k(b.series.key,f,g,b,A);a.tooltip.show([d,e],h,null,null,c)};A.dispatch=x,A.legend=w,A.lines=m,A.lines2=n,A.xAxis=s,A.yAxis=t,A.x2Axis=u,A.y2Axis=v,d3.rebind(A,m,"defined","isArea","size","xDomain","yDomain","forceX","forceY","interactive","clipEdge","clipVoronoi","id"),A.x=function(a){if(!arguments.length)return m.x;m.x(a),n.x(a);return A},A.y=function(a){if(!arguments.length)return m.y;m.y(a),n.y(a);return A},A.margin=function(a){if(!arguments.length)return b;b=a;return A},A.margin2=function(a){if(!arguments.length)return c;c=a;return A},A.width=function(a){if(!arguments.length)return e;e=a;return A},A.height=function(a){if(!arguments.length)return f;f=a;return A},A.color=function(b){if(!arguments.length)return d;d=a.utils.getColor(b),w.color(d);return A},A.showLegend=function(a){if(!arguments.length)return h;h=a;return A},A.tooltips=function(a){if(!arguments.length)return j;j=a;return A},A.tooltipContent=function(a){if(!arguments.length)return k;k=a;return A},A.interpolate=function(a){if(!arguments.length)return m.interpolate();m.interpolate(a),n.interpolate(a);return A},A.noData=function(a){if(!arguments.length)return l;l=a;return A},A.xTickFormat=function(a){if(!arguments.length)return s.tickFormat();s.tickFormat(a),u.tickFormat(a);return A},A.yTickFormat=function(a){if(!arguments.length)return t.tickFormat();t.tickFormat(a),v.tickFormat(a);return A};return A},a.models.multiBar=function(){function t(a){a.each(function(a){var t=c-b.left-b.right,u=d-b.top-b.bottom,v=d3.select(this);l&&(a=d3.layout.stack().offset("zero").values(function(a){return a.values}).y(i)(a)),a=a.map(function(a,b){a.values=a.values.map(function(a){a.series=b;return a});return a});var w=o&&p?[]:a.map(function(a){return a.values.map(function(a,b){return{x:h(a,b),y:i(a,b),y0:a.y0}})});e.domain(d3.merge(w).map(function(a){return a.x})).rangeBands([0,t],.1),f.domain(p||d3.extent(d3.merge(w).map(function(a){return a.y+(l?a.y0:0)}).concat(j))).range([u,0]);if(e.domain()[0]===e.domain()[1]||f.domain()[0]===f.domain()[1])singlePoint=!0;e.domain()[0]===e.domain()[1]&&(e.domain()[0]?e.domain([e.domain()[0]-e.domain()[0]*.01,e.domain()[1]+e.domain()[1]*.01]):e.domain([-1,1])),f.domain()[0]===f.domain()[1]&&(f.domain()[0]?f.domain([f.domain()[0]+f.domain()[0]*.01,f.domain()[1]-f.domain()[1]*.01]):f.domain([-1,1])),r=r||e,s=s||f;var z=v.selectAll("g.nv-wrap.nv-multibar").data([a]),A=z.enter().append("g").attr("class","nvd3 nv-wrap nv-multibar"),B=A.append("defs"),C=A.append("g"),D=z.select("g");C.append("g").attr("class","nv-groups"),z.attr("transform","translate("+b.left+","+b.top+")"),B.append("clipPath").attr("id","nv-edge-clip-"+g).append("rect"),z.select("#nv-edge-clip-"+g+" rect").attr("width",t).attr("height",u),D.attr("clip-path",k?"url(#nv-edge-clip-"+g+")":"");var E=z.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});E.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),d3.transition(E.exit()).selectAll("rect.nv-bar").delay(function(b,c){return c*n/a[0].values.length}).attr("y",function(a){return l?s(a.y0):s(0)}).attr("height",0).remove(),E.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}).style("fill",function(a,b){return m(a,b)}).style("stroke",function(a,b){return m(a,b)}),d3.transition(E).style("stroke-opacity",1).style("fill-opacity",.75);var F=E.selectAll("rect.nv-bar").data(function(a){return a.values});F.exit().remove();var G=F.enter().append("rect").attr("class",function(a,b){return i(a,b)<0?"nv-bar negative":"nv-bar positive"}).attr("x",function(b,c,d){return l?0:d*e.rangeBand()/a.length}).attr("y",function(a){return s(l?a.y0:0)}).attr("height",0).attr("width",e.rangeBand()/(l?1:a.length));F.on("mouseover",function(b,c){d3.select(this).classed("hover",!0),q.elementMouseover({value:i(b,c),point:b,series:a[b.series],pos:[e(h(b,c))+e.rangeBand()*(l?a.length/2:b.series+.5)/a.length,f(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("mouseout",function(b,c){d3.select(this).classed("hover",!1),q.elementMouseout({value:i(b,c),point:b,series:a[b.series],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("click",function(b,c){q.elementClick({value:i(b,c),point:b,series:a[b.series],pos:[e(h(b,c))+e.rangeBand()*(l?a.length/2:b.series+.5)/a.length,f(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()}).on("dblclick",function(b,c){q.elementDblClick({value:i(b,c),point:b,series:a[b.series],pos:[e(h(b,c))+e.rangeBand()*(l?a.length/2:b.series+.5)/a.length,f(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()}),F.attr("class",function(a,b){return i(a,b)<0?"nv-bar negative":"nv-bar positive"}).attr("transform",function(a,b){return"translate("+e(h(a,b))+",0)"}),l?d3.transition(F).delay(function(b,c){return c*n/a[0].values.length}).attr("y",function(a,b){return f(i(a,b)+(l?a.y0:0))}).attr("height",function(a,b){return Math.abs(f(a.y+(l?a.y0:0))-f(l?a.y0:0))}).each("end",function(){d3.transition(d3.select(this)).attr("x",function(b,c){return l?0:b.series*e.rangeBand()/a.length}).attr("width",e.rangeBand()/(l?1:a.length))}):d3.transition(F).delay(function(b,c){return c*n/a[0].values.length}).attr("x",function(b,c){return b.series*e.rangeBand()/a.length}).attr("width",e.rangeBand()/a.length).each("end",function(){d3.transition(d3.select(this)).attr("y",function(a,b){return i(a,b)<0?f(0):f(i(a,b))}).attr("height",function(a,b){return Math.abs(f(i(a,b))-f(0))})}),r=e.copy(),s=f.copy()});return t}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=d3.scale.ordinal(),f=d3.scale.linear(),g=Math.floor(Math.random()*1e4),h=function(a){return a.x},i=function(a){return a.y},j=[0],k=!0,l=!1,m=a.utils.defaultColor(),n=1200,o,p,q=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout"),r,s;t.dispatch=q,t.x=function(a){if(!arguments.length)return h;h=a;return t},t.y=function(a){if(!arguments.length)return i;i=a;return t},t.margin=function(a){if(!arguments.length)return b;b=a;return t},t.width=function(a){if(!arguments.length)return c;c=a;return t},t.height=function(a){if(!arguments.length)return d;d=a;return t},t.xScale=function(a){if(!arguments.length)return e;e=a;return t},t.yScale=function(a){if(!arguments.length)return f;f=a;return t},t.xDomain=function(a){if(!arguments.length)return o;o=a;return t},t.yDomain=function(a){if(!arguments.length)return p;p=a;return t},t.forceY=function(a){if(!arguments.length)return j;j= -a;return t},t.stacked=function(a){if(!arguments.length)return l;l=a;return t},t.clipEdge=function(a){if(!arguments.length)return k;k=a;return t},t.color=function(b){if(!arguments.length)return m;m=a.utils.getColor(b);return t},t.id=function(a){if(!arguments.length)return g;g=a;return t},t.delay=function(a){if(!arguments.length)return n;n=a;return t};return t},a.models.multiBarChart=function(){function v(a){a.each(function(p){var w=d3.select(this),z=this,A=(h||parseInt(w.style("width"))||960)-g.left-g.right,B=(i||parseInt(w.style("height"))||400)-g.top-g.bottom;if(!p||!p.length||!p.filter(function(a){return a.values.length}).length){w.append("text").attr("class","nvd3 nv-noData").attr("x",A/2).attr("y",B/2).attr("dy","-.7em").style("text-anchor","middle").text(s);return v}w.select(".nv-noData").remove(),q=b.xScale(),r=b.yScale();var C=w.selectAll("g.nv-wrap.nv-multiBarWithLegend").data([p]),D=C.enter().append("g").attr("class","nvd3 nv-wrap nv-multiBarWithLegend").append("g"),E=C.select("g");D.append("g").attr("class","nv-x nv-axis"),D.append("g").attr("class","nv-y nv-axis"),D.append("g").attr("class","nv-barsWrap"),D.append("g").attr("class","nv-legendWrap"),D.append("g").attr("class","nv-controlsWrap"),l&&(e.width(A/2),E.select(".nv-legendWrap").datum(p).call(e),g.top!=e.height()&&(g.top=e.height(),B=(i||parseInt(w.style("height"))||400)-g.top-g.bottom),E.select(".nv-legendWrap").attr("transform","translate("+A/2+","+ -g.top+")"));if(k){var F=[{key:"Grouped",disabled:b.stacked()},{key:"Stacked",disabled:!b.stacked()}];f.width(180).color(["#444","#444","#444"]),E.select(".nv-controlsWrap").datum(F).attr("transform","translate(0,"+ -g.top+")").call(f)}C.attr("transform","translate("+g.left+","+g.top+")"),b.width(A).height(B).color(p.map(function(a,b){return a.color||j(a,b)}).filter(function(a,b){return!p[b].disabled}));var G=E.select(".nv-barsWrap").datum(p.filter(function(a){return!a.disabled}));d3.transition(G).call(b),c.scale(q).ticks(A/100).tickSize(-B,0),E.select(".nv-x.nv-axis").attr("transform","translate(0,"+r.range()[0]+")"),d3.transition(E.select(".nv-x.nv-axis")).call(c);var H=E.select(".nv-x.nv-axis > g").selectAll("g");H.selectAll("line, text").style("opacity",1),m&&H.filter(function(a,b){return b%Math.ceil(p[0].values.length/(A/100))!==0}).selectAll("text, line").style("opacity",0),n&&H.selectAll("text").attr("transform",function(a,b,c){return"rotate("+n+" 0,0)"}).attr("text-transform",n>0?"start":"end"),d.scale(r).ticks(B/36).tickSize(-A,0),d3.transition(E.select(".nv-y.nv-axis")).call(d),e.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,p.filter(function(a){return!a.disabled}).length||p.map(function(a){a.disabled=!1,C.selectAll(".nv-series").classed("disabled",!1);return a}),a.transition().call(v)}),f.dispatch.on("legendClick",function(c,d){if(!!c.disabled){F=F.map(function(a){a.disabled=!0;return a}),c.disabled=!1;switch(c.key){case"Grouped":b.stacked(!1);break;case"Stacked":b.stacked(!0)}a.transition().call(v)}}),t.on("tooltipShow",function(a){o&&u(a,z.parentNode)}),v.update=function(){a.transition().call(v)},v.container=this});return v}var b=a.models.multiBar(),c=a.models.axis(),d=a.models.axis(),e=a.models.legend(),f=a.models.legend(),g={top:30,right:20,bottom:50,left:60},h=null,i=null,j=a.utils.defaultColor(),k=!0,l=!0,m=!0,n=0,o=!0,p=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" on "+b+"

"},q,r,s="No Data Available.",t=d3.dispatch("tooltipShow","tooltipHide");b.stacked(!1),c.orient("bottom").tickPadding(5).highlightZero(!1).showMaxMin(!1).tickFormat(function(a){return a}),d.orient("left").tickFormat(d3.format(",.1f"));var u=function(e,f){var g=e.pos[0]+(f.offsetLeft||0),h=e.pos[1]+(f.offsetTop||0),i=c.tickFormat()(b.x()(e.point,e.pointIndex)),j=d.tickFormat()(b.y()(e.point,e.pointIndex)),k=p(e.series.key,i,j,e,v);a.tooltip.show([g,h],k,e.value<0?"n":"s",null,f)};b.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+g.left,a.pos[1]+g.top],t.tooltipShow(a)}),b.dispatch.on("elementMouseout.tooltip",function(a){t.tooltipHide(a)}),t.on("tooltipHide",function(){o&&a.tooltip.cleanup()}),v.dispatch=t,v.multibar=b,v.legend=e,v.xAxis=c,v.yAxis=d,d3.rebind(v,b,"x","y","xDomain","yDomain","forceX","forceY","clipEdge","id","stacked","delay"),v.margin=function(a){if(!arguments.length)return g;g=a;return v},v.width=function(a){if(!arguments.length)return h;h=a;return v},v.height=function(a){if(!arguments.length)return i;i=a;return v},v.color=function(b){if(!arguments.length)return j;j=a.utils.getColor(b),e.color(j);return v},v.showControls=function(a){if(!arguments.length)return k;k=a;return v},v.showLegend=function(a){if(!arguments.length)return l;l=a;return v},v.reduceXTicks=function(a){if(!arguments.length)return m;m=a;return v},v.rotateLabels=function(a){if(!arguments.length)return n;n=a;return v},v.tooltip=function(a){if(!arguments.length)return p;p=a;return v},v.tooltips=function(a){if(!arguments.length)return o;o=a;return v},v.tooltipContent=function(a){if(!arguments.length)return p;p=a;return v},v.noData=function(a){if(!arguments.length)return s;s=a;return v};return v},a.models.multiBarHorizontal=function(){function v(a){a.each(function(a){var e=c-b.left-b.right,p=d-b.top-b.bottom,v=d3.select(this);l&&(a=d3.layout.stack().offset("zero").values(function(a){return a.values}).y(i)(a)),a=a.map(function(a,b){a.values=a.values.map(function(a){a.series=b;return a});return a});var w=q&&r?[]:a.map(function(a){return a.values.map(function(a,b){return{x:h(a,b),y:i(a,b),y0:a.y0}})});f.domain(q||d3.merge(w).map(function(a){return a.x})).rangeBands([0,p],.1),g.domain(r||d3.extent(d3.merge(w).map(function(a){return a.y+(l?a.y0:0)}).concat(j))),m&&!l?g.range([g.domain()[0]<0?n:0,e-(g.domain()[1]>0?n:0)]):g.range([0,e]),t=t||f,u=u||d3.scale.linear().domain(g.domain()).range([g(0),g(0)]);var z=d3.select(this).selectAll("g.nv-wrap.nv-multibarHorizontal").data([a]),A=z.enter().append("g").attr("class","nvd3 nv-wrap nv-multibarHorizontal"),B=A.append("defs"),C=A.append("g"),D=z.select("g");C.append("g").attr("class","nv-groups"),z.attr("transform","translate("+b.left+","+b.top+")");var E=z.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});E.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),d3.transition(E.exit()).style("stroke-opacity",1e-6).style("fill-opacity",1e-6).remove(),E.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}).style("fill",function(a,b){return k(a,b)}).style("stroke",function(a,b){return k(a,b)}),d3.transition(E).style("stroke-opacity",1).style("fill-opacity",.75);var F=E.selectAll("g.nv-bar").data(function(a){return a.values});F.exit().remove();var G=F.enter().append("g").attr("transform",function(b,c,d){return"translate("+u(l?b.y0:0)+","+(l?0:d*f.rangeBand()/a.length+f(h(b,c)))+")"});G.append("rect").attr("width",0).attr("height",f.rangeBand()/(l?1:a.length)),F.on("mouseover",function(b,c){d3.select(this).classed("hover",!0),s.elementMouseover({value:i(b,c),point:b,series:a[b.series],pos:[g(i(b,c)+(l?b.y0:0)),f(h(b,c))+f.rangeBand()*(l?a.length/2:b.series+.5)/a.length],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("mouseout",function(b,c){d3.select(this).classed("hover",!1),s.elementMouseout({value:i(b,c),point:b,series:a[b.series],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("click",function(b,c){s.elementClick({value:i(b,c),point:b,series:a[b.series],pos:[f(h(b,c))+f.rangeBand()*(l?a.length/2:b.series+.5)/a.length,g(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()}).on("dblclick",function(b,c){s.elementDblClick({value:i(b,c),point:b,series:a[b.series],pos:[f(h(b,c))+f.rangeBand()*(l?a.length/2:b.series+.5)/a.length,g(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()}),m&&!l?(G.append("text").attr("text-anchor",function(a,b){return i(a,b)<0?"end":"start"}),F.select("text").attr("y",f.rangeBand()/2).attr("dy","-.32em").text(function(a,b){return o(i(a,b))}),d3.transition(F).select("text").attr("x",function(a,b){return i(a,b)<0?-4:g(i(a,b))-g(0)+4})):F.selectAll("text").remove(),F.attr("class",function(a,b){return i(a,b)<0?"nv-bar negative":"nv-bar positive"}),l?d3.transition(F).attr("transform",function(a,b){return"translate("+g(a.y0)+","+f(h(a,b))+")"}).select("rect").attr("width",function(a,b){return Math.abs(g(i(a,b)+a.y0)-g(a.y0))}).attr("height",f.rangeBand()):d3.transition(F).attr("transform",function(b,c){return"translate("+(i(b,c)<0?g(i(b,c)):g(0))+","+(b.series*f.rangeBand()/a.length+f(h(b,c)))+")"}).select("rect").attr("height",f.rangeBand()/a.length).attr("width",function(a,b){return Math.abs(g(i(a,b))-g(0))}),t=f.copy(),u=g.copy()});return v}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=Math.floor(Math.random()*1e4),f=d3.scale.ordinal(),g=d3.scale.linear(),h=function(a){return a.x},i=function(a){return a.y},j=[0],k=a.utils.defaultColor(),l=!1,m=!1,n=60,o=d3.format(",.2f"),p=1200,q,r,s=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout"),t,u;v.dispatch=s,v.x=function(a){if(!arguments.length)return h;h=a;return v},v.y=function(a){if(!arguments.length)return i;i=a;return v},v.margin=function(a){if(!arguments.length)return b;b=a;return v},v.width=function(a){if(!arguments.length)return c;c=a;return v},v.height=function(a){if(!arguments.length)return d;d=a;return v},v.xScale=function(a){if(!arguments.length)return f;f=a;return v},v.yScale=function(a){if(!arguments.length)return g;g=a;return v},v.xDomain=function(a){if(!arguments.length)return q;q=a;return v},v.yDomain=function(a){if(!arguments.length)return r;r=a;return v},v.forceY=function(a){if(!arguments.length)return j;j=a;return v},v.stacked=function(a){if(!arguments.length)return l;l=a;return v},v.color=function(b){if(!arguments.length)return k;k=a.utils.getColor(b);return v},v.id=function(a){if(!arguments.length)return e;e=a;return v},v.delay=function(a){if(!arguments.length)return p;p=a;return v},v.showValues=function(a){if(!arguments.length)return m;m=a;return v},v.valueFormat=function(a){if(!arguments.length)return o;o=a;return v},v.valuePadding=function(a){if(!arguments.length)return n;n=a;return v};return v},a.models.multiBarHorizontalChart=function(){function u(a){a.each(function(m){var o=d3.select(this),v=this,w=(h||parseInt(o.style("width"))||960)-g.left-g.right,z=(i||parseInt(o.style("height"))||400)-g.top-g.bottom;if(!m||!m.length||!m.filter(function(a){return a.values.length}).length){o.append("text").attr("class","nvd3 nv-noData").attr("x",w/2).attr("y",z/2).attr("dy","-.7em").style("text-anchor","middle").text(r);return u}o.select(".nv-noData").remove(),p=b.xScale(),q=b.yScale();var A=o.selectAll("g.nv-wrap.nv-multiBarHorizontalChart").data([m]),B=A.enter().append("g").attr("class","nvd3 nv-wrap nv-multiBarHorizontalChart").append("g"),C=A.select("g");B.append("g").attr("class","nv-x nv-axis"),B.append("g").attr("class","nv-y nv-axis"),B.append("g").attr("class","nv-barsWrap"),B.append("g").attr("class","nv-legendWrap"),B.append("g").attr("class","nv-controlsWrap"),l&&(e.width(w/2),C.select(".nv-legendWrap").datum(m).call(e),g.top!=e.height()&&(g.top=e.height(),z=(i||parseInt(o.style("height"))||400)-g.top-g.bottom),C.select(".nv-legendWrap").attr("transform","translate("+w/2+","+ -g.top+")"));if(k){var D=[{key:"Grouped",disabled:b.stacked()},{key:"Stacked",disabled:!b.stacked()}];f.width(180).color(["#444","#444","#444"]),C.select(".nv-controlsWrap").datum(D).attr("transform","translate(0,"+ -g.top+")").call(f)}A.attr("transform","translate("+g.left+","+g.top+")"),b.width(w).height(z).color(m.map(function(a,b){return a.color||j(a,b)}).filter(function(a,b){return!m[b].disabled}));var E=C.select(".nv-barsWrap").datum(m.filter(function(a){return!a.disabled}));d3.transition(E).call(b),c.scale(p).ticks(z/24).tickSize(-w,0),d3.transition(C.select(".nv-x.nv-axis")).call(c);var F=C.select(".nv-x.nv-axis").selectAll("g");F.selectAll("line, text").style("opacity",1),d.scale(q).ticks(w/100).tickSize(-z,0),C.select(".nv-y.nv-axis").attr("transform","translate(0,"+z+")"),d3.transition(C.select(".nv-y.nv-axis")).call(d),e.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,m.filter(function(a){return!a.disabled}).length||m.map(function(a){a.disabled=!1,A.selectAll(".nv-series").classed("disabled",!1);return a}),a.transition().call(u)}),f.dispatch.on("legendClick",function(c,d){if(!!c.disabled){D=D.map(function(a){a.disabled=!0;return a}),c.disabled=!1;switch(c.key){case"Grouped":b.stacked(!1);break;case"Stacked":b.stacked(!0)}a.transition().call(u)}}),s.on("tooltipShow",function(a){n&&t(a,v.parentNode)}),u.update=function(){a.transition().call(u)},u.container=this});return u}var b=a.models.multiBarHorizontal(),c=a.models.axis(),d=a.models.axis(),e=a.models.legend().height(30),f=a.models.legend().height(30),g={top:30,right:20,bottom:50,left:60},h=null,i=null,j=a.utils.defaultColor(),k=!0,l=!0,m=!1,n=!0,o=function(a,b,c,d,e){return"

"+a+" - "+b+"

"+"

"+c+"

"},p,q,r="No Data Available.",s=d3.dispatch("tooltipShow","tooltipHide");b.stacked(m),c.orient("left").tickPadding(5).highlightZero(!1).showMaxMin(!1).tickFormat(function(a){return a}),d.orient("bottom").tickFormat(d3.format(",.1f"));var t=function(e,f){var g=e.pos[0]+(f.offsetLeft||0),h=e.pos[1]+(f.offsetTop||0),i=c.tickFormat()(b.x()(e.point,e.pointIndex)),j=d.tickFormat()(b.y()(e.point,e.pointIndex)),k=o(e.series.key,i,j,e,u);a.tooltip.show([g,h],k,e.value<0?"e":"w",null,f)};b.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+g.left,a.pos[1]+g.top],s.tooltipShow(a)}),b.dispatch.on("elementMouseout.tooltip",function(a){s.tooltipHide(a)}),s.on("tooltipHide",function(){n&&a.tooltip.cleanup()}),u.dispatch=s,u.multibar=b,u.legend=e,u.xAxis=c,u.yAxis=d,d3.rebind(u,b,"x","y","xDomain","yDomain","forceX","forceY","clipEdge","id","delay","showValues","valueFormat","stacked"),u.margin=function(a){if(!arguments.length)return g;g=a;return u},u.width=function(a){if(!arguments.length)return h;h=a;return u},u.height=function(a){if(!arguments.length)return i;i=a;return u},u.color=function(b){if(!arguments.length)return j;j=a.utils.getColor(b),e.color(j);return u},u.showControls=function(a){if(!arguments.length)return k;k=a;return u},u.showLegend=function(a){if(!arguments.length)return l;l=a;return u},u.tooltip=function(a){if(!arguments.length)return o;o=a;return u},u.tooltips=function(a){if(!arguments.length)return n;n=a;return u},u.tooltipContent=function(a){if(!arguments.length)return o;o=a;return u},u.noData=function(a){if(!arguments.length)return r;r=a;return u};return u},a.models.multiChart=function(){function y(a){a.each(function(h){var j=d3.select(this),z=this,A=(d||parseInt(j.style("width"))||960)-b.left-b.right,B=(e||parseInt(j.style("height"))||400)-b.top-b.bottom,C=h.filter(function(a){return!a.disabled&&a.type=="line"&&a.yAxis==1}),D=h.filter(function(a){return!a.disabled&&a.type=="line"&&a.yAxis==2}),E=h.filter(function(a){return!a.disabled&&a.type=="bar"&&a.yAxis==1}),F=h.filter(function(a){return!a.disabled&&a.type=="bar"&&a.yAxis==2}),G=h.filter(function(a){return!a.disabled&&a.type=="area"&&a.yAxis==1}),H=h.filter(function(a){return!a.disabled&&a.type=="area"&&a.yAxis==2}),I=h.filter(function(a){return!a.disabled&&a.yAxis==1}).map(function(a){return a.values.map(function(a,b){return{x:a.x,y:a.y}})}),J=h.filter(function(a){return!a.disabled&&a.yAxis==2}).map(function(a){return a.values.map(function(a,b){return{x:a.x,y:a.y}})});i.domain(d3.extent(d3.merge(I.concat(J)),function(a){return a.x})).range([0,A]);var K=j.selectAll("g.wrap.multiChart").data([h]),L=K.enter().append("g").attr("class","wrap nvd3 multiChart").append("g");L.append("g").attr("class","x axis"),L.append("g").attr("class","y1 axis"),L.append("g").attr("class","y2 axis"),L.append("g").attr("class","lines1Wrap"),L.append("g").attr("class","lines2Wrap"),L.append("g").attr("class","bars1Wrap"),L.append("g").attr("class","bars2Wrap"),L.append("g").attr("class","stack1Wrap"),L.append("g").attr("class","stack2Wrap"),L.append("g").attr("class","legendWrap");var M=K.select("g");f&&(v.width(A/2),M.select(".legendWrap").datum(h.map(function(a){a.originalKey=a.originalKey===undefined?a.key:a.originalKey,a.key=a.originalKey+(a.yAxis==1?"":" (right axis)");return a})).call(v),b.top!=v.height()&&(b.top=v.height(),B=(e||parseInt(j.style("height"))||400)-b.top-b.bottom),M.select(".legendWrap").attr("transform","translate("+A/2+","+ -b.top+")")),m.width(A).height(B).interpolate("monotone").color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==1&&h[b].type=="line"})),n.width(A).height(B).interpolate("monotone").color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==2&&h[b].type=="line"})),o.width(A).height(B).color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==1&&h[b].type=="bar"})),p.width(A).height(B).color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==2&&h[b].type=="bar"})),q.width(A).height(B).color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==1&&h[b].type=="area"})),r.width(A).height(B).color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==2&&h[b].type=="area"})),M.attr("transform","translate("+b.left+","+b.top+")");var N=M.select(".lines1Wrap").datum(C),O=M.select(".bars1Wrap").datum(E),P=M.select(".stack1Wrap").datum(G),Q=M.select(".lines2Wrap").datum(D),R=M.select(".bars2Wrap").datum(F),S=M.select(".stack2Wrap").datum(H),T=G.length?G.map(function(a){return a.values}).reduce(function(a,b){return a.map(function(a,c){return{x:a.x,y:a.y+b[c].y}})}).concat([{x:0,y:0}]):[],U=H.length?H.map(function(a){return a.values}).reduce(function(a,b){return a.map(function(a,c){return{x:a.x,y:a.y+b[c].y}})}).concat([{x:0,y:0}]):[];k.domain(d3.extent(d3.merge(I).concat(T),function(a){return a.y})).range([0,B]),l.domain(d3.extent(d3.merge(J).concat(U),function(a){return a.y})).range([0,B]),m.yDomain(k.domain()),o.yDomain(k.domain()),q.yDomain(k.domain()),n.yDomain(l.domain()),p.yDomain(l.domain()),r.yDomain(l.domain()),G.length&&d3.transition(P).call(q),H.length&&d3.transition(S).call(r),E.length&&d3.transition(O).call(o),F.length&&d3.transition(R).call(p),C.length&&d3.transition(N).call(m),D.length&&d3.transition(Q).call(n),s.ticks(A/100).tickSize(-B,0),M.select(".x.axis").attr("transform","translate(0,"+B+")"),d3.transition(M.select(".x.axis")).call(s),t.ticks(B/36).tickSize(-A,0),d3.transition(M.select(".y1.axis")).call(t),u.ticks(B/36).tickSize(-A,0),d3.transition(M.select(".y2.axis")).call(u),M.select(".y2.axis").style("opacity",J.length?1:0).attr("transform","translate("+i.range()[1]+",0)"),v.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,h.filter(function(a){return!a.disabled}).length||h.map(function(a){a.disabled=!1,K.selectAll(".series").classed("disabled",!1);return a}),a.transition().call(y)}),w.on("tooltipShow",function(a){g&&x(a,z.parentNode)})}),y.update=function(){y(a)},y.container=this;return y}var b={top:30,right:20,bottom:50,left:60},c=d3.scale.category20().range(),d=null,e=null,f=!0,g=!0,h=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" at "+b+"

"},i,j,i=d3.scale.linear(),k=d3.scale.linear(),l=d3.scale.linear(),m=a.models.line().yScale(k),n=a.models.line().yScale(l),o=a.models.multiBar().stacked(!1).yScale(k),p=a.models.multiBar().stacked(!1).yScale(l),q=a.models.stackedArea().yScale(k),r=a.models.stackedArea().yScale(l),s=a.models.axis().scale(i).orient("bottom").tickPadding(5),t=a.models.axis().scale(k).orient("left"),u=a.models.axis().scale(l).orient("right"),v=a.models.legend().height(30),w=d3.dispatch("tooltipShow","tooltipHide"),x=function(b,c){var d=b.pos[0]+(c.offsetLeft||0),e=b.pos[1]+(c.offsetTop||0),f=s.tickFormat()(m.x()(b.point,b.pointIndex)),g=(b.series.bar?t:u).tickFormat()(m.y()(b.point,b.pointIndex)),i=h(b.series.key,f,g,b,y);a.tooltip.show([d,e],i,undefined,undefined,c.offsetParent)};m.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),m.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),n.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),n.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),o.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),o.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),p.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),p.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),q.dispatch.on("tooltipShow",function(a){if(!Math.round(q.y()(a.point)*100)){setTimeout(function(){d3.selectAll(".point.hover").classed("hover",!1)},0);return!1}a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),q.dispatch.on("tooltipHide",function(a){w.tooltipHide(a)}),r.dispatch.on("tooltipShow",function(a){if(!Math.round(r.y()(a.point)*100)){setTimeout(function(){d3.selectAll(".point.hover").classed("hover",!1)},0);return!1}a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),r.dispatch.on("tooltipHide",function(a){w.tooltipHide(a)}),m.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),m.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),n.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),n.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),w.on("tooltipHide",function(){g&&a.tooltip.cleanup()}),y.dispatch=w,y.lines1=m,y.lines2=n,y.bars1=o,y.bars2=p,y.stack1=q,y.stack2=r,y.xAxis=s,y.yAxis1=t,y.yAxis2=u,y.x=function(a){if(!arguments.length)return getX;getX=a,m.x(a),o.x(a);return y},y.y=function(a){if(!arguments.length)return getY;getY=a,m.y(a),o.y(a);return y},y.margin=function(a){if(!arguments.length)return b;b=a;return y},y.width=function(a){if(!arguments.length)return d;d=a;return y},y.height=function(a){if(!arguments.length)return e;e=a;return y},y.color=function(a){if(!arguments.length)return c;c=a,v.color(a);return y},y.showLegend=function(a){if(!arguments.length)return f;f=a;return y},y.tooltips=function(a){if(!arguments.length)return g;g=a;return y},y.tooltipContent=function(a){if(!arguments.length)return h;h=a;return y};return y},a.models.ohlcBar=function(){function u(a){a.each(function(a){var q=c-b.left-b.right,u=d-b.top-b.bottom,v=d3.select(this);f.domain(r||d3.extent(a[0].values.map(h).concat(n))).range([0,q]),g.domain(s||[d3.min(a[0].values.map(m).concat(o)),d3.max(a[0].values.map(l).concat(o))]).range([u,0]);if(f.domain()[0]===f.domain()[1]||g.domain()[0]===g.domain()[1])singlePoint=!0;f.domain()[0]===f.domain()[1]&&(f.domain()[0]?f.domain([f.domain()[0]-f.domain()[0]*.01,f.domain()[1]+f.domain()[1]*.01]):f.domain([-1,1])),g.domain()[0]===g.domain()[1]&&(g.domain()[0]?g.domain([g.domain()[0]+g.domain()[0]*.01,g.domain()[1]-g.domain()[1]*.01]):g.domain([-1,1]));var w=d3.select(this).selectAll("g.nv-wrap.nv-ohlcBar").data([a[0].values]),z=w.enter().append("g").attr("class","nvd3 nv-wrap nv-ohlcBar"),A=z.append("defs"),B=z.append("g"),C=w.select("g");B.append("g").attr("class","nv-ticks"),w.attr("transform","translate("+b.left+","+b.top+")"),v.on("click",function(a,b){t.chartClick({data:a,index:b,pos:d3.event,id:e})}),A.append("clipPath").attr("id","nv-chart-clip-path-"+e).append("rect"),w.select("#nv-chart-clip-path-"+e+" rect").attr("width",q).attr("height",u),C.attr("clip-path",p?"url(#nv-chart-clip-path-"+e+")":"");var D=w.select(".nv-ticks").selectAll(".nv-tick").data(function(a){return a});D.exit().remove();var E=D.enter().append("path").attr("class",function(a,b,c){return(j(a,b)>k(a,b)?"nv-tick negative":"nv-tick positive")+" nv-tick-"+c+"-"+b}).attr("d",function(b,c){var d=q/a[0].values.length*.9;return"m0,0l0,"+(g(j(b,c))-g(l(b,c)))+"l"+ -d/2+",0l"+d/2+",0l0,"+(g(m(b,c))-g(j(b,c)))+"l0,"+(g(k(b,c))-g(m(b,c)))+"l"+d/2+",0l"+ -d/2+",0z"}).attr("transform",function(a,b){return"translate("+f(h(a,b))+","+g(l(a,b))+")"}).on("mouseover",function(b,c){d3.select(this).classed("hover",!0),t.elementMouseover({point:b,series:a[0],pos:[f(h(b,c)),g(i(b,c))],pointIndex:c,seriesIndex:0,e:d3.event})}).on("mouseout",function(b,c){d3.select(this).classed("hover",!1),t.elementMouseout({point:b,series:a[0],pointIndex:c,seriesIndex:0,e:d3.event})}).on("click",function(a,b){t.elementClick({value:i(a,b),data:a,index:b,pos:[f(h(a,b)),g(i(a,b))],e:d3.event,id:e}),d3.event.stopPropagation()}).on("dblclick",function(a,b){t.elementDblClick({value:i(a,b),data:a,index:b,pos:[f(h(a,b)),g(i(a,b))],e:d3.event,id:e}),d3.event.stopPropagation()});D.attr("class",function(a,b,c){return(j(a,b)>k(a,b)?"nv-tick negative":"nv-tick positive")+" nv-tick-"+c+"-"+b}),d3.transition(D).attr("transform",function(a,b){return"translate("+f(h(a,b))+","+g(l(a,b))+")"}).attr("d",function(b,c){var d=q/a[0].values.length*.9;return"m0,0l0,"+(g(j(b,c))-g(l(b,c)))+"l"+ -d/2+",0l"+d/2+",0l0,"+(g(m(b,c))-g(j(b,c)))+"l0,"+(g(k(b,c))-g(m(b,c)))+"l"+d/2+",0l"+ -d/2+",0z"})});return u}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=Math.floor(Math.random()*1e4),f=d3.scale.linear(),g=d3.scale.linear(),h=function(a){return a.x},i=function(a){return a.y},j=function(a){return a.open},k=function(a){return a.close},l=function(a){return a.high},m=function(a){return a.low},n=[],o=[],p=!0,q=a.utils.defaultColor(),r,s,t=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout");u.dispatch=t,u.x=function(a){if(!arguments.length)return h;h=a;return u},u.y=function(a){if(!arguments.length)return i;i=a;return u},u.open=function(a){if(!arguments.length)return j;j=a;return u},u.close=function(a){if(!arguments.length)return k;k=a;return u},u.high=function(a){if(!arguments.length)return l;l=a;return u},u.low=function(a){if(!arguments.length)return m;m=a;return u},u.margin=function(a){if(!arguments.length)return b;b=a;return u},u.width=function(a){if(!arguments.length)return c;c=a;return u},u.height=function(a){if(!arguments.length)return d;d=a;return u},u.xScale=function(a){if(!arguments.length)return f;f=a;return u},u.yScale=function(a){if(!arguments.length)return g;g=a;return u},u.xDomain=function(a){if(!arguments.length)return r;r=a;return u},u.yDomain=function(a){if(!arguments.length)return s;s=a;return u},u.forceX=function(a){if(!arguments.length)return n;n=a;return u},u.forceY=function(a){if(!arguments.length)return o;o=a;return u},u.clipEdge=function(a){if(!arguments.length)return p;p=a;return u},u.color=function(b){if(!arguments.length)return q;q=a.utils.getColor(b);return u},u.id=function(a){if(!arguments.length)return e;e=a;return u};return u},a.models.pie=function(){function p(a){a.each(function(a){function E(a){a.innerRadius=0;var b=d3.interpolate({startAngle:0,endAngle:0},a);return function(a){return w(b(a))}}function D(a){n||(a.innerRadius=0);var b=d3.interpolate(this._current,a);this._current=b(0);return function(a){return w(b(a))}}function C(a){var b=(a.startAngle+a.endAngle)*90/Math.PI-90;return b>90?b-180:b}var j=c-b.left-b.right,p=d-b.top-b.bottom,q=Math.min(j,p)/2,r=d3.select(this),s=r.selectAll(".nv-wrap.nv-pie").data([e(a[0])]),t=s.enter().append("g").attr("class","nvd3 nv-wrap nv-pie nv-chart-"+h),u=t.append("g"),v=s.select("g");u.append("g").attr("class","nv-pie"),s.attr("transform","translate("+b.left+","+b.top+")"),v.select(".nv-pie").attr("transform","translate("+j/2+","+p/2+")"),r.on("click",function(a,b){o.chartClick({data:a,index:b,pos:d3.event,id:h})});var w=d3.svg.arc().outerRadius(q-q/5);n&&w.innerRadius(q/2);var x=d3.layout.pie().sort(null).value(function(a){return a.disabled?0:g(a)}),y=s.select(".nv-pie").selectAll(".nv-slice").data(x);y.exit().remove();var z=y.enter().append("g").attr("class","nv-slice").on("mouseover",function(a,b){d3.select(this).classed("hover",!0),o.elementMouseover({label:f(a.data),value:g(a.data),point:a.data,pointIndex:b,pos:[d3.event.pageX,d3.event.pageY],id:h})}).on("mouseout",function(a,b){d3.select(this).classed("hover",!1),o.elementMouseout({label:f(a.data),value:g(a.data),point:a.data,index:b,id:h})}).on("click",function(a,b){o.elementClick({label:f(a.data),value:g(a.data),point:a.data,index:b,pos:d3.event,id:h}),d3.event.stopPropagation()}).on("dblclick",function(a,b){o.elementDblClick({label:f(a.data),value:g(a.data),point:a.data,index:b,pos:d3.event,id:h}),d3.event.stopPropagation()});y.attr("fill",function(a,b){return i(a,b)}).attr("stroke",function(a,b){return i(a,b)});var A=z.append("path").each(function(a){this._current=a});d3.transition(y.select("path")).attr("d",w).attrTween("d",D);if(k){var B=w;l&&(B=d3.svg.arc().outerRadius(w.outerRadius())),z.append("g").classed("nv-label",!0).each(function(a,b){var c=d3.select(this);c.attr("transform",function(a){a.outerRadius=q+10,a.innerRadius=q+15;return"translate("+B.centroid(a)+")"}),c.append("rect").style("stroke","#fff").style("fill","#fff").attr("rx",3).attr("ry",3),c.append("text").style("text-anchor","middle").style("fill","#000")}),y.select(".nv-label").transition().attr("transform",function(a){a.outerRadius=q+10,a.innerRadius=q+15;return"translate("+B.centroid(a)+")"}),y.each(function(a,b){var c=d3.select(this);c.select(".nv-label text").text(function(a,b){var c=(a.endAngle-a.startAngle)/(2*Math.PI);return a.value&&c>m?f(a.data):""});var d=c.select("text").node().getBBox();c.select(".nv-label rect").attr("width",d.width+10).attr("height",d.height+10).attr("transform",function(){return"translate("+[d.x-5,d.y-5]+")"})})}});return p}var b={top:0,right:0,bottom:0,left:0},c=500,d=500,e=function(a){return a.values},f=function(a){return a.x},g=function(a){return a.y},h=Math.floor(Math.random()*1e4),i=a.utils.defaultColor(),j=d3.format(",.2f"),k=!0,l=!1,m=.02,n=!1,o=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout");p.dispatch=o,p.margin=function(a){if(!arguments.length)return b;b=a;return p},p.width=function(a){if(!arguments.length)return c;c=a;return p},p.height=function(a){if(!arguments.length)return d;d=a;return p},p.values=function(a){if(!arguments.length)return e;e=a;return p},p.x=function(a){if(!arguments.length)return f;f=a;return p},p.y=function(a){if(!arguments.length)return g;g=d3.functor(a);return p},p.showLabels=function(a){if(!arguments.length)return k;k=a;return p},p.donutLabelsOutside=function(a){if(!arguments.length)return l;l=a;return p},p.donut=function(a){if(!arguments.length)return n;n=a;return p},p.id=function(a){if(!arguments.length)return h;h=a;return p},p.color=function(b){if(!arguments.length)return i;i=a.utils.getColor(b);return p},p.valueFormat=function(a){if(!arguments.length)return j;j=a;return p},p.labelThreshold=function(a){if(!arguments.length)return m;m=a;return p};return p},a.models.pieChart=function(){function n(f){f.each(function(h){var o=d3.select(this),p=this,q=(c||parseInt(o.style("width"))||960)-b.left-b.right,r=(d||parseInt(o.style("height"))||400)-b.top-b.bottom;if(!h||!h.length){o.append("text").attr("class","nvd3 nv-noData").attr("x",q/2).attr("y",r/2).attr("dy","-.7em").style("text-anchor","middle").text(i);return n}o.select(".nv-noData").remove();var s=o.selectAll("g.nv-wrap.nv-pieChart").data([h]),t=s.enter().append("g").attr("class","nvd3 nv-wrap nv-pieChart").append("g");t.append("g").attr("class","nv-pieWrap"),t.append("g").attr("class","nv-legendWrap");var u=s.select("g");e&&(k.width(q).key(j.x()),s.select(".nv-legendWrap").datum(j.values()(h[0])).call(k),b.top!=k.height()&&(b.top=k.height(),r=(d||parseInt(o.style("height"))||400)-b.top-b.bottom),s.select(".nv-legendWrap").attr("transform","translate(0,"+ -b.top+")")),j.width(q).height(r),u.attr("transform","translate("+b.left+","+b.top+")");var v=u.select(".nv-pieWrap").datum(h);d3.transition(v).call(j),k.dispatch.on("legendClick",function(a,b,c){a.disabled=!a.disabled,j.values()(h[0]).filter(function(a){return!a.disabled}).length||j.values()(h[0]).map(function(a){a.disabled=!1,s.selectAll(".nv-series").classed("disabled",!1);return a}),f.transition().call(n)}),j.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],l.tooltipShow(a)}),g&&l.on("tooltipShow",function(a){m(a)}),j.dispatch.on("elementMouseout.tooltip",function(a){l.tooltipHide(a)}),g&&l.on("tooltipHide",a.tooltip -.cleanup),n.update=function(){f.transition().call(n)},n.container=this});return n}var b={top:30,right:20,bottom:20,left:20},c=null,d=null,e=!0,f=a.utils.defaultColor(),g=!0,h=function(a,b,c,d){return"

"+a+"

"+"

"+b+"

"},i="No Data Available.",j=a.models.pie(),k=a.models.legend().height(30),l=d3.dispatch("tooltipShow","tooltipHide"),m=function(b,c){var d=b.pos[0]+(c&&c.offsetLeft||0),e=b.pos[1]+(c&&c.offsetTop||0),f=j.valueFormat()(j.y()(b.point)),g=h(j.x()(b.point),f,b,n);a.tooltip.show([d,e],g,b.value<0?"n":"s",null,c)};n.dispatch=l,n.pie=j,d3.rebind(n,j,"valueFormat","values","x","y","id","showLabels","donutLabelsOutside","donut","labelThreshold"),n.margin=function(a){if(!arguments.length)return b;b=a;return n},n.width=function(a){if(!arguments.length)return c;c=a;return n},n.height=function(a){if(!arguments.length)return d;d=a;return n},n.color=function(b){if(!arguments.length)return f;f=a.utils.getColor(b),k.color(f),j.color(f);return n},n.showLegend=function(a){if(!arguments.length)return e;e=a;return n},n.tooltips=function(a){if(!arguments.length)return g;g=a;return n},n.tooltipContent=function(a){if(!arguments.length)return h;h=a;return n},n.noData=function(a){if(!arguments.length)return i;i=a;return n};return n},a.models.scatter=function(){function G(a){a.each(function(a){function P(){if(!q)return!1;var c,d=d3.merge(a.map(function(a,b){return a.values.filter(r).map(function(a,c){return[g(j(a,c))*(Math.random()/1e12+1),h(k(a,c))*(Math.random()/1e12+1),b,c]})}));if(t){M.append("clipPath").attr("id","nv-points-clip-"+f);var e=K.select("#nv-points-clip-"+f).selectAll("circle").data(d);e.enter().append("circle").attr("r",u),e.exit().remove(),e.attr("cx",function(a){return a[0]}).attr("cy",function(a){return a[1]}),K.select(".nv-point-paths").attr("clip-path","url(#nv-points-clip-"+f+")")}if(B===!0){var i=d3.geom.voronoi(d).map(function(a,b){return{data:a,series:d[b][2],point:d[b][3]}}),l=K.select(".nv-point-paths").selectAll("path").data(i);l.enter().append("path").attr("class",function(a,b){return"nv-path-"+b}),l.exit().remove(),l.attr("d",function(a){return"M"+a.data.join(",")+"Z"}),c=l}else{var m=d.map(function(a,b){return{data:a,series:d[b][2],point:d[b][3]}});c=K.select(".nv-groups").selectAll(".nv-group").selectAll("path.nv-point").data(m).style("pointer-events","auto")}c.on("click",function(c){var d=a[c.series],e=d.values[c.point];A.elementClick({point:e,series:d,pos:[g(j(e,c.point))+b.left,h(k(e,c.point))+b.top],seriesIndex:c.series,pointIndex:c.point})}).on("mouseover",function(c){var d=a[c.series],e=d.values[c.point];A.elementMouseover({point:e,series:d,pos:[g(j(e,c.point))+b.left,h(k(e,c.point))+b.top],seriesIndex:c.series,pointIndex:c.point})}).on("mouseout",function(b,c){var d=a[b.series],e=d.values[b.point];A.elementMouseout({point:e,series:d,seriesIndex:b.series,pointIndex:b.point})})}var G=c-b.left-b.right,H=d-b.top-b.bottom,I=d3.select(this);a=a.map(function(a,b){a.values=a.values.map(function(a){a.series=b;return a});return a});var J=v&&w&&x?[]:d3.merge(a.map(function(a){return a.values.map(function(a,b){return{x:j(a,b),y:k(a,b),size:l(a,b)}})}));g.domain(v||d3.extent(J.map(function(a){return a.x}).concat(n))).range([0,G]),h.domain(w||d3.extent(J.map(function(a){return a.y}).concat(o))).range([H,0]),i.domain(x||d3.extent(J.map(function(a){return a.size}).concat(p))).range(y||[16,256]);if(g.domain()[0]===g.domain()[1]||h.domain()[0]===h.domain()[1])z=!0;g.domain()[0]===g.domain()[1]&&(g.domain()[0]?g.domain([g.domain()[0]-g.domain()[0]*.01,g.domain()[1]+g.domain()[1]*.01]):g.domain([-1,1])),h.domain()[0]===h.domain()[1]&&(h.domain()[0]?h.domain([h.domain()[0]+h.domain()[0]*.01,h.domain()[1]-h.domain()[1]*.01]):h.domain([-1,1])),C=C||g,D=D||h,E=E||i;var K=I.selectAll("g.nv-wrap.nv-scatter").data([a]),L=K.enter().append("g").attr("class","nvd3 nv-wrap nv-scatter nv-chart-"+f+(z?" nv-single-point":"")),M=L.append("defs"),N=L.append("g"),O=K.select("g");N.append("g").attr("class","nv-groups"),N.append("g").attr("class","nv-point-paths"),K.attr("transform","translate("+b.left+","+b.top+")"),M.append("clipPath").attr("id","nv-edge-clip-"+f).append("rect"),K.select("#nv-edge-clip-"+f+" rect").attr("width",G).attr("height",H),O.attr("clip-path",s?"url(#nv-edge-clip-"+f+")":"");var Q=K.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});Q.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),d3.transition(Q.exit()).style("stroke-opacity",1e-6).style("fill-opacity",1e-6).remove(),Q.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}),d3.transition(Q).style("fill",function(a,b){return e(a,b)}).style("stroke",function(a,b){return e(a,b)}).style("stroke-opacity",1).style("fill-opacity",.5);var R=Q.selectAll("path.nv-point").data(function(a){return a.values});R.enter().append("path").attr("transform",function(a,b){return"translate("+C(j(a,b))+","+D(k(a,b))+")"}).attr("d",d3.svg.symbol().type(m).size(function(a,b){return i(l(a,b))})),R.exit().remove(),d3.transition(Q.exit().selectAll("path.nv-point")).attr("transform",function(a,b){return"translate("+g(j(a,b))+","+h(k(a,b))+")"}).remove(),R.attr("class",function(a,b){return"nv-point nv-point-"+b}),d3.transition(R).attr("transform",function(a,b){return"translate("+g(j(a,b))+","+h(k(a,b))+")"}).attr("d",d3.svg.symbol().type(m).size(function(a,b){return i(l(a,b))})),clearTimeout(F),F=setTimeout(P,1e3),C=g.copy(),D=h.copy(),E=i.copy()});return G}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=a.utils.defaultColor(),f=Math.floor(Math.random()*1e5),g=d3.scale.linear(),h=d3.scale.linear(),i=d3.scale.linear(),j=function(a){return a.x},k=function(a){return a.y},l=function(a){return a.size},m=function(a){return a.shape||"circle"},n=[],o=[],p=[],q=!0,r=function(a){return!a.notActive},s=!1,t=!0,u=function(){return 25},v=null,w=null,x=null,y=null,z=!1,A=d3.dispatch("elementClick","elementMouseover","elementMouseout"),B=!0,C,D,E,F;A.on("elementMouseover.point",function(a){q&&d3.select(".nv-chart-"+f+" .nv-series-"+a.seriesIndex+" .nv-point-"+a.pointIndex).classed("hover",!0)}),A.on("elementMouseout.point",function(a){q&&d3.select(".nv-chart-"+f+" .nv-series-"+a.seriesIndex+" .nv-point-"+a.pointIndex).classed("hover",!1)}),G.dispatch=A,G.x=function(a){if(!arguments.length)return j;j=d3.functor(a);return G},G.y=function(a){if(!arguments.length)return k;k=d3.functor(a);return G},G.size=function(a){if(!arguments.length)return l;l=d3.functor(a);return G},G.margin=function(a){if(!arguments.length)return b;b.top=typeof a.top!="undefined"?a.top:b.top,b.right=typeof a.right!="undefined"?a.right:b.right,b.bottom=typeof a.bottom!="undefined"?a.bottom:b.bottom,b.left=typeof a.left!="undefined"?a.left:b.left;return G},G.width=function(a){if(!arguments.length)return c;c=a;return G},G.height=function(a){if(!arguments.length)return d;d=a;return G},G.xScale=function(a){if(!arguments.length)return g;g=a;return G},G.yScale=function(a){if(!arguments.length)return h;h=a;return G},G.zScale=function(a){if(!arguments.length)return i;i=a;return G},G.xDomain=function(a){if(!arguments.length)return v;v=a;return G},G.yDomain=function(a){if(!arguments.length)return w;w=a;return G},G.sizeDomain=function(a){if(!arguments.length)return x;x=a;return G},G.sizeRange=function(a){if(!arguments.length)return y;y=a;return G},G.forceX=function(a){if(!arguments.length)return n;n=a;return G},G.forceY=function(a){if(!arguments.length)return o;o=a;return G},G.forceSize=function(a){if(!arguments.length)return p;p=a;return G},G.interactive=function(a){if(!arguments.length)return q;q=a;return G},G.pointActive=function(a){if(!arguments.length)return r;r=a;return G},G.clipEdge=function(a){if(!arguments.length)return s;s=a;return G},G.clipVoronoi=function(a){if(!arguments.length)return t;t=a;return G},G.useVoronoi=function(a){if(!arguments.length)return B;B=a,B===!1&&(t=!1);return G},G.clipRadius=function(a){if(!arguments.length)return u;u=a;return G},G.color=function(b){if(!arguments.length)return e;e=a.utils.getColor(b);return G},G.shape=function(a){if(!arguments.length)return m;m=a;return G},G.id=function(a){if(!arguments.length)return f;f=a;return G},G.singlePoint=function(a){if(!arguments.length)return z;z=a;return G};return G},a.models.scatterChart=function(){function E(a){a.each(function(v){function L(){if(t){K.select(".nv-point-paths").style("pointer-events","all");return!1}K.select(".nv-point-paths").style("pointer-events","none");var a=d3.mouse(this);m.distortion(s).focus(a[0]),n.distortion(s).focus(a[1]),K.select(".nv-scatterWrap").datum(v.filter(function(a){return!a.disabled})).call(b),K.select(".nv-x.nv-axis").call(c),K.select(".nv-y.nv-axis").call(d),K.select(".nv-distributionX").datum(v.filter(function(a){return!a.disabled})).call(g),K.select(".nv-distributionY").datum(v.filter(function(a){return!a.disabled})).call(h)}var w=d3.select(this),x=this,F=(j||parseInt(w.style("width"))||960)-i.left-i.right,G=(k||parseInt(w.style("height"))||400)-i.top-i.bottom;if(!v||!v.length||!v.filter(function(a){return a.values.length}).length){w.append("text").attr("class","nvd3 nv-noData").attr("x",F/2).attr("y",G/2).attr("dy","-.7em").style("text-anchor","middle").text(z);return E}w.select(".nv-noData").remove(),m=b.xScale(),n=b.yScale(),A=A||m,B=B||n;var H=w.selectAll("g.nv-wrap.nv-scatterChart").data([v]),I=H.enter().append("g").attr("class","nvd3 nv-wrap nv-scatterChart nv-chart-"+b.id()),J=I.append("g"),K=H.select("g");J.append("rect").attr("class","nvd3 nv-background"),J.append("g").attr("class","nv-x nv-axis"),J.append("g").attr("class","nv-y nv-axis"),J.append("g").attr("class","nv-scatterWrap"),J.append("g").attr("class","nv-distWrap"),J.append("g").attr("class","nv-legendWrap"),J.append("g").attr("class","nv-controlsWrap"),H.attr("transform","translate("+i.left+","+i.top+")"),q&&(e.width(F/2),H.select(".nv-legendWrap").datum(v).call(e),i.top!=e.height()&&(i.top=e.height(),G=(k||parseInt(w.style("height"))||400)-i.top-i.bottom),H.select(".nv-legendWrap").attr("transform","translate("+F/2+","+ -i.top+")")),r&&(f.width(180).color(["#444"]),K.select(".nv-controlsWrap").datum(D).attr("transform","translate(0,"+ -i.top+")").call(f)),b.width(F).height(G).color(v.map(function(a,b){return a.color||l(a,b)}).filter(function(a,b){return!v[b].disabled})),H.select(".nv-scatterWrap").datum(v.filter(function(a){return!a.disabled})).call(b),c.scale(m).ticks(c.ticks()?c.ticks():F/100).tickSize(-G,0),K.select(".nv-x.nv-axis").attr("transform","translate(0,"+n.range()[0]+")").call(c),d.scale(n).ticks(d.ticks()?d.ticks():G/36).tickSize(-F,0),K.select(".nv-y.nv-axis").call(d),o&&(g.getData(b.x()).scale(m).width(F).color(v.map(function(a,b){return a.color||l(a,b)}).filter(function(a,b){return!v[b].disabled})),J.select(".nv-distWrap").append("g").attr("class","nv-distributionX").attr("transform","translate(0,"+n.range()[0]+")"),K.select(".nv-distributionX").datum(v.filter(function(a){return!a.disabled})).call(g)),p&&(h.getData(b.y()).scale(n).width(G).color(v.map(function(a,b){return a.color||l(a,b)}).filter(function(a,b){return!v[b].disabled})),J.select(".nv-distWrap").append("g").attr("class","nv-distributionY").attr("transform","translate(-"+h.size()+",0)"),K.select(".nv-distributionY").datum(v.filter(function(a){return!a.disabled})).call(h)),d3.fisheye&&(K.select(".nv-background").attr("width",F).attr("height",G),K.select(".nv-background").on("mousemove",L),K.select(".nv-background").on("click",function(){t=!t}),b.dispatch.on("elementClick.freezeFisheye",function(){t=!t})),f.dispatch.on("legendClick",function(e,f){e.disabled=!e.disabled,s=e.disabled?0:2.5,K.select(".nv-background").style("pointer-events",e.disabled?"none":"all"),K.select(".nv-point-paths").style("pointer-events",e.disabled?"all":"none"),e.disabled?(m.distortion(s).focus(0),n.distortion(s).focus(0),K.select(".nv-scatterWrap").call(b),K.select(".nv-x.nv-axis").call(c),K.select(".nv-y.nv-axis").call(d)):t=!1,E(a)}),e.dispatch.on("legendClick",function(b,c,d){b.disabled=!b.disabled,v.filter(function(a){return!a.disabled}).length||v.map(function(a){a.disabled=!1,H.selectAll(".nv-series").classed("disabled",!1);return a}),E(a)}),b.dispatch.on("elementMouseover.tooltip",function(a){d3.select(".nv-chart-"+b.id()+" .nv-series-"+a.seriesIndex+" .nv-distx-"+a.pointIndex).attr("y1",a.pos[1]-G),d3.select(".nv-chart-"+b.id()+" .nv-series-"+a.seriesIndex+" .nv-disty-"+a.pointIndex).attr("x2",a.pos[0]+g.size()),a.pos=[a.pos[0]+i.left,a.pos[1]+i.top],y.tooltipShow(a)}),y.on("tooltipShow",function(a){u&&C(a,x.parentNode)}),A=m.copy(),B=n.copy(),E.update=function(){E(a)},E.container=this});return E}var b=a.models.scatter(),c=a.models.axis(),d=a.models.axis(),e=a.models.legend(),f=a.models.legend(),g=a.models.distribution(),h=a.models.distribution(),i={top:30,right:20,bottom:50,left:60},j=null,k=null,l=a.utils.defaultColor(),m=d3.fisheye?d3.fisheye.scale(d3.scale.linear).distortion(0):b.xScale(),n=d3.fisheye?d3.fisheye.scale(d3.scale.linear).distortion(0):b.yScale(),o=!1,p=!1,q=!0,r=!!d3.fisheye,s=0,t=!1,u=!0,v=function(a,b,c){return""+b+""},w=function(a,b,c){return""+c+""},x=null,y=d3.dispatch("tooltipShow","tooltipHide"),z="No Data Available.";b.xScale(m).yScale(n),c.orient("bottom").tickPadding(10),d.orient("left").tickPadding(10),g.axis("x"),h.axis("y");var A,B,C=function(e,f){var g=e.pos[0]+(f.offsetLeft||0),h=e.pos[1]+(f.offsetTop||0),j=e.pos[0]+(f.offsetLeft||0),k=n.range()[0]+i.top+(f.offsetTop||0),l=m.range()[0]+i.left+(f.offsetLeft||0),o=e.pos[1]+(f.offsetTop||0),p=c.tickFormat()(b.x()(e.point,e.pointIndex)),q=d.tickFormat()(b.y()(e.point,e.pointIndex));v!=null&&a.tooltip.show([j,k],v(e.series.key,p,q,e,E),"n",1,f,"x-nvtooltip"),w!=null&&a.tooltip.show([l,o],w(e.series.key,p,q,e,E),"e",1,f,"y-nvtooltip"),x!=null&&a.tooltip.show([g,h],x(e.series.key,p,q,e,E),e.value<0?"n":"s",null,f)},D=[{key:"Magnify",disabled:!0}];b.dispatch.on("elementMouseout.tooltip",function(a){y.tooltipHide(a),d3.select(".nv-chart-"+b.id()+" .nv-series-"+a.seriesIndex+" .nv-distx-"+a.pointIndex).attr("y1",0),d3.select(".nv-chart-"+b.id()+" .nv-series-"+a.seriesIndex+" .nv-disty-"+a.pointIndex).attr("x2",h.size())}),y.on("tooltipHide",function(){u&&a.tooltip.cleanup()}),E.dispatch=y,E.scatter=b,E.legend=e,E.controls=f,E.xAxis=c,E.yAxis=d,E.distX=g,E.distY=h,d3.rebind(E,b,"id","interactive","pointActive","x","y","shape","size","xScale","yScale","zScale","xDomain","yDomain","sizeDomain","sizeRange","forceX","forceY","forceSize","clipVoronoi","clipRadius","useVoronoi"),E.margin=function(a){if(!arguments.length)return i;i=a;return E},E.width=function(a){if(!arguments.length)return j;j=a;return E},E.height=function(a){if(!arguments.length)return k;k=a;return E},E.color=function(b){if(!arguments.length)return l;l=a.utils.getColor(b),e.color(l),g.color(l),h.color(l);return E},E.showDistX=function(a){if(!arguments.length)return o;o=a;return E},E.showDistY=function(a){if(!arguments.length)return p;p=a;return E},E.showControls=function(a){if(!arguments.length)return r;r=a;return E},E.showLegend=function(a){if(!arguments.length)return q;q=a;return E},E.fisheye=function(a){if(!arguments.length)return s;s=a;return E},E.tooltips=function(a){if(!arguments.length)return u;u=a;return E},E.tooltipContent=function(a){if(!arguments.length)return x;x=a;return E},E.tooltipXContent=function(a){if(!arguments.length)return v;v=a;return E},E.tooltipYContent=function(a){if(!arguments.length)return w;w=a;return E},E.noData=function(a){if(!arguments.length)return z;z=a;return E};return E},a.models.sparkline=function(){function m(a){a.each(function(a){var e=c-b.left-b.right,m=d-b.top-b.bottom,n=d3.select(this);f.domain(k||d3.extent(a,h)).range([0,e]),g.domain(l||d3.extent(a,i)).range([m,0]);var o=n.selectAll("g.nv-wrap.nv-sparkline").data([a]),p=o.enter().append("g").attr("class","nvd3 nv-wrap nv-sparkline"),q=p.append("g"),r=o.select("g");o.attr("transform","translate("+b.left+","+b.top+")");var s=o.selectAll("path").data(function(a){return[a]});s.enter().append("path"),s.exit().remove(),s.style("stroke",function(a,b){return a.color||j(a,b)}).attr("d",d3.svg.line().x(function(a,b){return f(h(a,b))}).y(function(a,b){return g(i(a,b))}));var t=o.selectAll("circle.nv-point").data(function(a){return a.filter(function(a,b){return g.domain().indexOf(i(a,b))!=-1||h(a,b)==f.domain()[1]})});t.enter().append("circle").attr("class","nv-point"),t.exit().remove(),t.attr("cx",function(a,b){return f(h(a,b))}).attr("cy",function(a,b){return g(i(a,b))}).attr("r",2).style("stroke",function(a,b){return a.x==f.domain()[1]?"#444":a.y==g.domain()[0]?"#d62728":"#2ca02c"}).style("fill",function(a,b){return a.x==f.domain()[1]?"#444":a.y==g.domain()[0]?"#d62728":"#2ca02c"})});return m}var b={top:2,right:0,bottom:2,left:0},c=400,d=32,e=!0,f=d3.scale.linear(),g=d3.scale.linear(),h=function(a){return a.x},i=function(a){return a.y},j=a.utils.getColor(["#000"]),k,l;m.margin=function(a){if(!arguments.length)return b;b=a;return m},m.width=function(a){if(!arguments.length)return c;c=a;return m},m.height=function(a){if(!arguments.length)return d;d=a;return m},m.x=function(a){if(!arguments.length)return h;h=d3.functor(a);return m},m.y=function(a){if(!arguments.length)return i;i=d3.functor(a);return m},m.xDomain=function(a){if(!arguments.length)return k;k=a;return m},m.yDomain=function(a){if(!arguments.length)return l;l=a;return m},m.animate=function(a){if(!arguments.length)return e;e=a;return m},m.color=function(b){if(!arguments.length)return j;j=a.utils.getColor(b);return m};return m},a.models.sparklinePlus=function(){function p(a){a.each(function(a){function A(){var c=d3.event.offsetX-b.left;v.attr("x1",c).attr("x2",c),w.attr("transform",function(a){return"translate("+(c-6)+","+ -b.top+")"}).text(j(Math.round(m.invert(c))));var d=function(a,b){var c=Math.abs(f(a[0])-b),d=0;for(var e=0;e"+a+""+"

"+c+" on "+b+"

"},j,k,l="No Data Available.",m=a.models.stackedArea(),n=a.models.axis().orient("bottom").tickPadding(5),o=a.models.axis().orient("left"),p=d3.format(",.2f"),q=a.models.legend().height(30),r=a.models.legend().height(30),s=d3.dispatch("tooltipShow","tooltipHide"),t=[{key:"Stacked"},{key:"Stream",disabled:!0},{key:"Expanded",disabled:!0}],u=function(b,c){var d=b.pos[0]+(c.offsetLeft||0),e=b.pos[1]+(c.offsetTop||0),f=n.tickFormat()(m.x()(b.point,b.pointIndex)),g=o.tickFormat()(m.y()(b.point,b.pointIndex)),h=i(b.series.key,f,g,b,v);a.tooltip.show([d,e],h,b.value<0?"n":"s",null,c)};m.dispatch.on("tooltipShow",function(a){if(!Math.round(m.y()(a.point)*100)){setTimeout(function(){d3.selectAll(".point.hover").classed("hover",!1)},0);return!1}a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],s.tooltipShow(a)}),m.dispatch.on("tooltipHide",function(a){s.tooltipHide(a)}),s.on("tooltipHide",function(){h&&a.tooltip.cleanup()}),v.dispatch=s,v.stacked=m,v.xAxis=n,v.yAxis=o,d3.rebind(v,m,"x","y","size","xScale","yScale","xDomain","yDomain","sizeDomain","interactive","offset","order","style","clipEdge","forceX","forceY","forceSize"),v.margin=function(a){if(!arguments.length)return b;b=a;return v},v.width=function(a){if(!arguments.length)return getWidth;c=a;return v},v.height=function(a){if(!arguments.length)return getHeight;d=a;return v},v.color=function(b){if(!arguments.length)return e;e=a.utils.getColor(b),q.color(e),m.color(e);return v},v.showControls=function(a){if(!arguments.length)return f;f=a;return v},v.showLegend=function(a){if(!arguments.length)return g;g=a;return v},v.tooltips=function(a){if(!arguments.length)return h;h=a;return v},v.tooltipContent=function(a){if(!arguments.length)return i;i=a;return v},v.noData=function(a){if(!arguments.length)return l;l=a;return v},o.setTickFormat=o.tickFormat,o.tickFormat=function(a){if(!arguments.length)return p;p=a;return o};return v}})() \ No newline at end of file +;h=a;return r},r.noData=function(a){if(!arguments.length)return i;i=a;return r};return r},a.models.distribution=function(){function k(a){a.each(function(a){var i=c-(e==="x"?b.left+b.right:b.top+b.bottom),k=e=="x"?"y":"x",l=d3.select(this);j=j||h;var m=l.selectAll("g.nv-distribution").data([a]),n=m.enter().append("g").attr("class","nvd3 nv-distribution"),o=n.append("g"),p=m.select("g");m.attr("transform","translate("+b.left+","+b.top+")");var q=p.selectAll("g.nv-dist").data(function(a){return a},function(a){return a.key});q.enter().append("g"),q.attr("class",function(a,b){return"nv-dist nv-series-"+b}).style("stroke",function(a,b){return g(a,b)});var r=q.selectAll("line.nv-dist"+e).data(function(a){return a.values});r.enter().append("line").attr(e+"1",function(a,b){return j(f(a,b))}).attr(e+"2",function(a,b){return j(f(a,b))}),d3.transition(q.exit().selectAll("line.nv-dist"+e)).attr(e+"1",function(a,b){return h(f(a,b))}).attr(e+"2",function(a,b){return h(f(a,b))}).style("stroke-opacity",0).remove(),r.attr("class",function(a,b){return"nv-dist"+e+" nv-dist"+e+"-"+b}).attr(k+"1",0).attr(k+"2",d),d3.transition(r).attr(e+"1",function(a,b){return h(f(a,b))}).attr(e+"2",function(a,b){return h(f(a,b))}),j=h.copy()});return k}var b={top:0,right:0,bottom:0,left:0},c=400,d=8,e="x",f=function(a){return a[e]},g=a.utils.defaultColor(),h=d3.scale.linear(),i,j;k.margin=function(a){if(!arguments.length)return b;b=a;return k},k.width=function(a){if(!arguments.length)return c;c=a;return k},k.axis=function(a){if(!arguments.length)return e;e=a;return k},k.size=function(a){if(!arguments.length)return d;d=a;return k},k.getData=function(a){if(!arguments.length)return f;f=d3.functor(a);return k},k.scale=function(a){if(!arguments.length)return h;h=a;return k},k.color=function(b){if(!arguments.length)return g;g=a.utils.getColor(b);return k};return k},a.models.indentedTree=function(){function o(a){a.each(function(b){function C(a){var b=a.values||a._values;return b&&b.length}function B(a){return a._values&&a._values.length}function A(a){return a._values&&a._values.length?l:a.values&&a.values.length?m:""}function z(a,b,c){d3.event.stopPropagation();if(d3.event.shiftKey&&!c){d3.event.shiftKey=!1,a.values&&a.values.forEach(function(a){(a.values||a._values)&&z(a,0,!0)});return!0}if(!C(a))return!0;a.values?(a._values=a.values,a.values=null):(a.values=a._values,a._values=null),o.update()}var c=0,e=1,f=d3.layout.tree().children(function(a){return a.values}).size([d,i]);b[0].key||(b[0].key=h);var p=f.nodes(b[0]),q=d3.select(this).selectAll("div").data([[p]]),r=q.enter().append("div").attr("class","nvd3 nv-wrap nv-indentedtree"),s=r.append("table"),t=q.select("table").attr("width","100%").attr("class",k);if(g){var u=s.append("thead"),v=u.append("tr");j.forEach(function(a){v.append("th").attr("width",a.width?a.width:"10%").style("text-align",a.type=="numeric"?"right":"left").append("span").text(a.label)})}var w=t.selectAll("tbody").data(function(a){return a});w.enter().append("tbody"),e=d3.max(p,function(a){return a.depth}),f.size([d,e*i]);var x=w.selectAll("tr").data(function(a){return a},function(a){return a.id||a.id==++c});x.exit().remove(),x.select("img.nv-treeicon").attr("src",A).classed("folded",B);var y=x.enter().append("tr");j.forEach(function(a,b){var c=y.append("td").style("padding-left",function(a){return(b?0:a.depth*i+12+(A(a)?0:16))+"px"},"important").style("text-align",a.type=="numeric"?"right":"left");b==0&&c.append("img").classed("nv-treeicon",!0).classed("nv-folded",B).attr("src",A).style("width","14px").style("height","14px").style("padding","0 1px").style("display",function(a){return A(a)?"inline-block":"none"}).on("click",z),c.append("span").attr("class",d3.functor(a.classes)).text(function(b){return a.format?a.format(b):b[a.key]||"-"}),a.showCount&&c.append("span").attr("class","nv-childrenCount").text(function(a){return a.values&&a.values.length||a._values&&a._values.length?"("+(a.values&&a.values.length||a._values&&a._values.length)+")":""}),a.click&&c.select("span").on("click",a.click)}),x.order().on("click",function(a){n.elementClick({row:this,data:a,pos:[a.x,a.y]})}).on("dblclick",function(a){n.elementDblclick({row:this,data:a,pos:[a.x,a.y]})}).on("mouseover",function(a){n.elementMouseover({row:this,data:a,pos:[a.x,a.y]})}).on("mouseout",function(a){n.elementMouseout({row:this,data:a,pos:[a.x,a.y]})}),o.update=function(){a.transition().call(o)},o.container=this});return o}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=a.utils.defaultColor(),f=Math.floor(Math.random()*1e4),g=!0,h="No Data Available.",i=20,j=[{key:"key",label:"Name",type:"text"}],k=null,l="images/grey-plus.png",m="images/grey-minus.png",n=d3.dispatch("elementClick","elementDblclick","elementMouseover","elementMouseout");o.margin=function(a){if(!arguments.length)return b;b=a;return o},o.width=function(a){if(!arguments.length)return c;c=a;return o},o.height=function(a){if(!arguments.length)return d;d=a;return o},o.color=function(b){if(!arguments.length)return e;e=a.utils.getColor(b),scatter.color(e);return o},o.id=function(a){if(!arguments.length)return f;f=a;return o},o.header=function(a){if(!arguments.length)return g;g=a;return o},o.noData=function(a){if(!arguments.length)return h;h=a;return o},o.columns=function(a){if(!arguments.length)return j;j=a;return o},o.tableClass=function(a){if(!arguments.length)return k;k=a;return o},o.iconOpen=function(a){if(!arguments.length)return l;l=a;return o},o.iconClose=function(a){if(!arguments.length)return m;m=a;return o};return o},a.models.legend=function(){function i(a){a.each(function(a){var i=c-b.left-b.right,j=d3.select(this),l=j.selectAll("g.nv-legend").data([a]),m=l.enter().append("g").attr("class","nvd3 nv-legend").append("g"),n=l.select("g");l.attr("transform","translate("+b.left+","+b.top+")");var o=n.selectAll(".nv-series").data(function(a){return a}),p=o.enter().append("g").attr("class","nv-series").on("mouseover",function(a,b){h.legendMouseover(a,b)}).on("mouseout",function(a,b){h.legendMouseout(a,b)}).on("click",function(a,b){h.legendClick(a,b)}).on("dblclick",function(a,b){h.legendDblclick(a,b)});p.append("circle").style("fill",function(a,b){return a.color||f(a,b)}).style("stroke",function(a,b){return a.color||f(a,b)}).style("stroke-width",2).attr("r",5),p.append("text").text(e).attr("text-anchor","start").attr("dy",".32em").attr("dx","8"),o.classed("disabled",function(a){return a.disabled}),o.exit().remove();if(g){var q=[];o.each(function(a,b){q.push(d3.select(this).select("text").node().getComputedTextLength()+28)});var r=0,s=0,t=[];while(si&&r>1){t=[],r--;for(k=0;k(t[k%r]||0)&&(t[k%r]=q[k]);s=t.reduce(function(a,b,c,d){return a+b})}var u=[];for(var v=0,w=0;vz&&(z=y);return"translate("+A+","+x+")"}),n.attr("transform","translate("+(c-b.right-z)+","+b.top+")"),d=b.top+b.bottom+x+15}});return i}var b={top:5,right:0,bottom:5,left:0},c=400,d=20,e=function(a){return a.key},f=a.utils.defaultColor(),g=!0,h=d3.dispatch("legendClick","legendDblclick","legendMouseover","legendMouseout");i.dispatch=h,i.margin=function(a){if(!arguments.length)return b;b=a;return i},i.width=function(a){if(!arguments.length)return c;c=a;return i},i.height=function(a){if(!arguments.length)return d;d=a;return i},i.key=function(a){if(!arguments.length)return e;e=a;return i},i.color=function(b){if(!arguments.length)return f;f=a.utils.getColor(b);return i},i.align=function(a){if(!arguments.length)return g;g=a;return i};return i},a.models.line=function(){function r(a){a.each(function(a){var r=c-b.left-b.right,s=d-b.top-b.bottom,t=d3.select(this);l=o.xScale(),m=o.yScale(),p=p||l,q=q||m;var u=t.selectAll("g.nv-wrap.nv-line").data([a]),v=u.enter().append("g").attr("class","nvd3 nv-wrap nv-line"),w=v.append("defs"),z=v.append("g"),A=u.select("g");z.append("g").attr("class","nv-groups"),z.append("g").attr("class","nv-scatterWrap"),u.attr("transform","translate("+b.left+","+b.top+")"),o.width(r).height(s);var B=u.select(".nv-scatterWrap");d3.transition(B).call(o),w.append("clipPath").attr("id","nv-edge-clip-"+f).append("rect"),u.select("#nv-edge-clip-"+f+" rect").attr("width",r).attr("height",s),A.attr("clip-path",k?"url(#nv-edge-clip-"+f+")":""),B.attr("clip-path",k?"url(#nv-edge-clip-"+f+")":"");var C=u.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});C.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),d3.transition(C.exit()).style("stroke-opacity",1e-6).style("fill-opacity",1e-6).remove(),C.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}).style("fill",function(a,b){return e(a,b)}).style("stroke",function(a,b){return e(a,b)}),d3.transition(C).style("stroke-opacity",1).style("fill-opacity",.5);var D=C.selectAll("path.nv-area").data(function(a){return[a]});D.enter().append("path").filter(j).attr("class","nv-area").attr("d",function(a){return d3.svg.area().interpolate(n).defined(i).x(function(a,b){return p(g(a,b))}).y0(function(a,b){return q(h(a,b))}).y1(function(a,b){return q(m.domain()[0]<=0?m.domain()[1]>=0?0:m.domain()[1]:m.domain()[0])}).apply(this,[a.values])}),d3.transition(C.exit().selectAll("path.nv-area")).attr("d",function(a){return d3.svg.area().interpolate(n).defined(i).x(function(a,b){return p(g(a,b))}).y0(function(a,b){return q(h(a,b))}).y1(function(a,b){return q(m.domain()[0]<=0?m.domain()[1]>=0?0:m.domain()[1]:m.domain()[0])}).apply(this,[a.values])}),d3.transition(D.filter(j)).attr("d",function(a){return d3.svg.area().interpolate(n).defined(i).x(function(a,b){return p(g(a,b))}).y0(function(a,b){return q(h(a,b))}).y1(function(a,b){return q(m.domain()[0]<=0?m.domain()[1]>=0?0:m.domain()[1]:m.domain()[0])}).apply(this,[a.values])});var E=C.selectAll("path.nv-line").data(function(a){return[a.values]});E.enter().append("path").attr("class",function(a){return"nv-line"}).attr("d",d3.svg.line().interpolate(n).defined(i).x(function(a,b){return p(g(a,b))}).y(function(a,b){return q(h(a,b))})),d3.transition(C.exit().selectAll("path.nv-line")).attr("d",d3.svg.line().interpolate(n).defined(i).x(function(a,b){return l(g(a,b))}).y(function(a,b){return m(h(a,b))})),d3.transition(E).attr("d",d3.svg.line().interpolate(n).defined(i).x(function(a,b){return l(g(a,b))}).y(function(a,b){return m(h(a,b))})),p=l.copy(),q=m.copy()});return r}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=a.utils.defaultColor(),f=Math.floor(Math.random()*1e4),g=function(a){return a.x},h=function(a){return a.y},i=function(a,b){return!isNaN(h(a,b))&&h(a,b)!==null},j=function(a){return a.area},k=!1,l,m,n="linear",o=a.models.scatter();o.id(f).size(16).sizeDomain([16,256]);var p,q;r.dispatch=o.dispatch,r.scatter=o,d3.rebind(r,o,"interactive","size","xScale","yScale","zScale","xDomain","yDomain","sizeDomain","forceX","forceY","forceSize","clipVoronoi","clipRadius"),r.margin=function(a){if(!arguments.length)return b;b=a;return r},r.width=function(a){if(!arguments.length)return c;c=a;return r},r.height=function(a){if(!arguments.length)return d;d=a;return r},r.x=function(a){if(!arguments.length)return g;g=a,o.x(a);return r},r.y=function(a){if(!arguments.length)return h;h=a,o.y(a);return r},r.clipEdge=function(a){if(!arguments.length)return k;k=a;return r},r.color=function(b){if(!arguments.length)return e;e=a.utils.getColor(b),o.color(e);return r},r.id=function(a){if(!arguments.length)return f;f=a;return r},r.interpolate=function(a){if(!arguments.length)return n;n=a;return r},r.defined=function(a){if(!arguments.length)return i;i=a;return r},r.isArea=function(a){if(!arguments.length)return j;j=d3.functor(a);return r};return r},a.models.lineChart=function(){function r(a){a.each(function(l){var s=d3.select(this),t=this,u=(h||parseInt(s.style("width"))||960)-f.left-f.right,v=(i||parseInt(s.style("height"))||400)-f.top-f.bottom;if(!l||!l.length||!l.filter(function(a){return a.values.length}).length){s.append("text").attr("class","nvd3 nv-noData").attr("x",u/2).attr("y",v/2).attr("dy","-.7em").style("text-anchor","middle").text(o);return r}s.select(".nv-noData").remove(),m=b.xScale(),n=b.yScale();var w=s.selectAll("g.nv-wrap.nv-lineChart").data([l]),z=w.enter().append("g").attr("class","nvd3 nv-wrap nv-lineChart").append("g"),A=w.select("g");z.append("g").attr("class","nv-x nv-axis"),z.append("g").attr("class","nv-y nv-axis"),z.append("g").attr("class","nv-linesWrap"),z.append("g").attr("class","nv-legendWrap"),j&&(e.width(u),A.select(".nv-legendWrap").datum(l).call(e),f.top!=e.height()&&(f.top=e.height(),v=(i||parseInt(s.style("height"))||400)-f.top-f.bottom),w.select(".nv-legendWrap").attr("transform","translate(0,"+ -f.top+")")),w.attr("transform","translate("+f.left+","+f.top+")"),b.width(u).height(v).color(l.map(function(a,b){return a.color||g(a,b)}).filter(function(a,b){return!l[b].disabled}));var B=A.select(".nv-linesWrap").datum(l.filter(function(a){return!a.disabled}));d3.transition(B).call(b),c.scale(m).ticks(u/100).tickSize(-v,0),A.select(".nv-x.nv-axis").attr("transform","translate(0,"+n.range()[0]+")"),d3.transition(A.select(".nv-x.nv-axis")).call(c),d.scale(n).ticks(v/36).tickSize(-u,0),d3.transition(A.select(".nv-y.nv-axis")).call(d),e.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,l.filter(function(a){return!a.disabled}).length||l.map(function(a){a.disabled=!1,w.selectAll(".nv-series").classed("disabled",!1);return a}),a.transition().call(r)}),p.on("tooltipShow",function(a){k&&q(a,t.parentNode)}),r.update=function(){r(a)},r.container=this});return r}var b=a.models.line(),c=a.models.axis(),d=a.models.axis(),e=a.models.legend(),f={top:30,right:20,bottom:50,left:60},g=a.utils.defaultColor(),h=null,i=null,j=!0,k=!0,l=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" at "+b+"

"},m,n,o="No Data Available.",p=d3.dispatch("tooltipShow","tooltipHide");c.orient("bottom").tickPadding(5),d.orient("left");var q=function(e,f){if(f){var g=d3.select(f).select("svg"),h=g.attr("viewBox");if(h){h=h.split(" ");var i=parseInt(g.style("width"))/h[2];e.pos[0]=e.pos[0]*i,e.pos[1]=e.pos[1]*i}}var j=e.pos[0]+(f.offsetLeft||0),k=e.pos[1]+(f.offsetTop||0),m=c.tickFormat()(b.x()(e.point,e.pointIndex)),n=d.tickFormat()(b.y()(e.point,e.pointIndex)),o=l(e.series.key,m,n,e,r);a.tooltip.show([j,k],o,null,null,f)};b.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+f.left,a.pos[1]+f.top],p.tooltipShow(a)}),b.dispatch.on("elementMouseout.tooltip",function(a){p.tooltipHide(a)}),p.on("tooltipHide",function(){k&&a.tooltip.cleanup()}),r.dispatch=p,r.lines=b,r.legend=e,r.xAxis=c,r.yAxis=d,d3.rebind(r,b,"defined","isArea","x","y","size","xScale","yScale","xDomain","yDomain","forceX","forceY","interactive","clipEdge","clipVoronoi","id","interpolate"),r.margin=function(a){if(!arguments.length)return f;f=a;return r},r.width=function(a){if(!arguments.length)return h;h=a;return r},r.height=function(a){if(!arguments.length)return i;i=a;return r},r.color=function(b){if(!arguments.length)return g;g=a.utils.getColor(b),e.color(g);return r},r.showLegend=function(a){if(!arguments.length)return j;j=a;return r},r.tooltips=function(a){if(!arguments.length)return k;k=a;return r},r.tooltipContent=function(a){if(!arguments.length)return l;l=a;return r},r.noData=function(a){if(!arguments.length)return o;o=a;return r};return r},a.models.linePlusBarChart=function(){function w(a){a.each(function(p){var y=d3.select(this),z=this,A=(i||parseInt(y.style("width"))||960)-h.left-h.right,B=(j||parseInt(y.style("height"))||400)-h.top-h.bottom;if(!p||!p.length||!p.filter(function(a){return a.values.length}).length){y.append("text").attr("class","nvd3 nv-noData").attr("x",A/2).attr("y",B/2).attr("dy","-.7em").style("text-anchor","middle").text(t);return w}y.select(".nv-noData").remove(),r=c.yScale(),s=b.yScale();var C=p.filter(function(a){return!a.disabled&&a.bar}),D=p.filter(function(a){return!a.disabled&&!a.bar}),E=p.filter(function(a){return!a.disabled&&a.bar}).map(function(a){return a.values.map(function(a,b){return{x:k(a,b),y:l(a,b)}})}),F=p.filter(function(a){return!a.disabled&&!a.bar}).map(function(a){return a.values.map(function(a,b){return{x:k(a,b),y:l(a,b)}})});q.domain(d3.extent(d3.merge(E.concat(F)),function(a){return a.x})).range([0,A]);var G=d3.select(this).selectAll("g.nv-wrap.nv-linePlusBar").data([p]),H=G.enter().append("g").attr("class","nvd3 nv-wrap nv-linePlusBar").append("g"),I=G.select("g");H.append("g").attr("class","nv-x nv-axis"),H.append("g").attr("class","nv-y1 nv-axis"),H.append("g").attr("class","nv-y2 nv-axis"),H.append("g").attr("class","nv-barsWrap"),H.append("g").attr("class","nv-linesWrap"),H.append("g").attr("class","nv-legendWrap"),n&&(g.width(A/2),I.select(".nv-legendWrap").datum(p.map(function(a){a.originalKey=a.originalKey===undefined?a.key:a.originalKey,a.key=a.originalKey+(a.bar?" (left axis)":" (right axis)");return a})).call(g),h.top!=g.height()&&(h.top=g.height(),B=(j||parseInt(y.style("height"))||400)-h.top-h.bottom),I.select(".nv-legendWrap").attr("transform","translate("+A/2+","+ -h.top+")")),G.attr("transform","translate("+h.left+","+h.top+")"),b.width(A).height(B).color(p.map(function(a,b){return a.color||m(a,b)}).filter(function(a,b){return!p[b].disabled&&!p[b].bar})),c.width(A).height(B).color(p.map(function(a,b){return a.color||m(a,b)}).filter(function(a,b){return!p[b].disabled&&p[b].bar}));var J=I.select(".nv-barsWrap").datum(C.length?C:[{values:[]}]),K=I.select(".nv-linesWrap").datum(D.length?D:[{values:[]}]);d3.transition(J).call(c),d3.transition(K).call(b),d.scale(q).ticks(A/100).tickSize(-B,0),I.select(".nv-x.nv-axis").attr("transform","translate(0,"+r.range()[0]+")"),d3.transition(I.select(".nv-x.nv-axis")).call(d),e.scale(r).ticks(B/36).tickSize(-A,0),d3.transition(I.select(".nv-y1.nv-axis")).style("opacity",C.length?1:0).call(e),f.scale(s).ticks(B/36).tickSize(C.length?0:-A,0),I.select(".nv-y2.nv-axis").style("opacity",D.length?1:0).attr("transform","translate("+q.range()[1]+",0)"),d3.transition(I.select(".nv-y2.nv-axis")).call(f),g.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,p.filter(function(a){return!a.disabled}).length||p.map(function(a){a.disabled=!1,G.selectAll(".nv-series").classed("disabled",!1);return a}),a.transition().call(w)}),u.on("tooltipShow",function(a){o&&v(a,z.parentNode)}),w.update=function(){a.transition().call(w)},w.container=this});return w}var b=a.models.line(),c=a.models.historicalBar(),d=a.models.axis(),e=a.models.axis(),f=a.models.axis(),g=a.models.legend(),h={top:30,right:60,bottom:50,left:60},i=null,j=null,k=function(a){return a.x},l=function(a){return a.y},m=a.utils.defaultColor(),n=!0,o=!0,p=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" at "+b+"

"},q=d3.scale.linear(),r,s,t="No Data Available.",u=d3.dispatch("tooltipShow","tooltipHide");d.orient("bottom").tickPadding(5),e.orient("left"),f.orient("right");var v=function(c,g){var h=c.pos[0]+(g.offsetLeft||0),i=c.pos[1]+(g.offsetTop||0),j=d.tickFormat()(b.x()(c.point,c.pointIndex)),k=(c.series.bar?e:f).tickFormat()(b.y()(c.point,c.pointIndex)),l=p(c.series.key,j,k,c,w);a.tooltip.show([h,i],l,c.value<0?"n":"s",null,g)};b.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+h.left,a.pos[1]+h.top],u.tooltipShow(a)}),b.dispatch.on("elementMouseout.tooltip",function(a){u.tooltipHide(a)}),c.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+h.left,a.pos[1]+h.top],u.tooltipShow(a)}),c.dispatch.on("elementMouseout.tooltip",function(a){u.tooltipHide(a)}),u.on("tooltipHide",function(){o&&a.tooltip.cleanup()}),w.dispatch=u,w.legend=g,w.lines=b,w.bars=c,w.xAxis=d,w.yAxis1=e,w.yAxis2=f,d3.rebind(w,b,"defined","size","clipVoronoi","interpolate"),w.x=function(a){if(!arguments.length)return k;k=a,b.x(a),c.x(a);return w},w.y=function(a){if(!arguments.length)return l;l=a,b.y(a),c.y(a);return w},w.margin=function(a){if(!arguments.length)return h;h=a;return w},w.width=function(a){if(!arguments.length)return i;i=a;return w},w.height=function(a){if(!arguments.length)return j;j=a;return w},w.color=function(b){if(!arguments.length)return m;m=a.utils.getColor(b),g.color(m);return w},w.showLegend=function(a){if(!arguments.length)return n;n=a;return w},w.tooltips=function(a){if(!arguments.length)return o;o=a;return w},w.tooltipContent=function(a){if(!arguments.length)return p;p=a;return w},w.noData=function(a){if(!arguments.length)return t;t=a;return w};return w},a.models.lineWithFocusChart=function(){function A(k){k.each(function(B){function R(){i=y.empty()?null:y.extent(),extent=y.empty()?q.domain():y.extent(),P();var a=L.select(".nv-focus .nv-linesWrap").datum(B.filter(function(a){return!a.disabled}).map(function(a,b){return{key:a.key,values:a.values.filter(function(a,b){return m.x()(a,b)>=extent[0]&&m.x()(a,b)<=extent[1]})}}));d3.transition(a).call(m),d3.transition(L.select(".nv-focus .nv-x.nv-axis")).call(s),d3.transition(L.select(".nv-focus .nv-y.nv-axis")).call(t)}function Q(a){var b=+(a=="e"),c=b?1:-1,d=G/3;return"M"+.5*c+","+d+"A6,6 0 0 "+b+" "+6.5*c+","+(d+6)+"V"+(2*d-6)+"A6,6 0 0 "+b+" "+.5*c+","+2*d+"Z"+"M"+2.5*c+","+(d+8)+"V"+(2*d-8)+"M"+4.5*c+","+(d+8)+"V"+(2*d-8)}function P(){y.empty()||y.extent(i),N.data([y.empty()?q.domain():i]).each(function(a,b){var c=q(a[0])-o.range()[0],d=o.range()[1]-q(a[1]);d3.select(this).select(".left").attr("width",c<0?0:c),d3.select(this).select(".right").attr("x",q(a[1])).attr("width",d<0?0:d)})}var C=d3.select(this),D=this,E=(e||parseInt(C.style("width"))||960)-b.left-b.right,F=(f||parseInt(C.style("height"))||400)-b.top-b.bottom-g,G=g-c.top-c.bottom;if(!B||!B.length||!B.filter(function(a){return a.values.length}).length){C.append("text").attr("class","nvd3 nv-noData").attr("x",E/2).attr("y",F/2).attr("dy","-.7em").style("text-anchor","middle").text(l);return A}C.select(".nv-noData").remove(),y.on("brush",R);var H=C.selectAll("g.nv-wrap.nv-lineWithFocusChart").data([B]),I=H.enter().append("g").attr("class","nvd3 nv-wrap nv-lineWithFocusChart").append("g");I.append("g").attr("class","nv-legendWrap");var J=I.append("g").attr("class","nv-focus");J.append("g").attr("class","nv-x nv-axis"),J.append("g").attr("class","nv-y nv-axis"),J.append("g").attr("class","nv-linesWrap");var K=I.append("g").attr("class","nv-context");K.append("g").attr("class","nv-x nv-axis"),K.append("g").attr("class","nv-y nv-axis"),K.append("g").attr("class","nv-linesWrap"),K.append("g").attr("class","nv-brushBackground"),K.append("g").attr("class","nv-x nv-brush");var L=H.select("g");h&&(w.width(E),L.select(".nv-legendWrap").datum(B).call(w),b.top!=w.height()&&(b.top=w.height(),F=(f||parseInt(C.style("height"))||400)-b.top-b.bottom-g),L.select(".nv-legendWrap").attr("transform","translate(0,"+ -b.top+")")),m.width(E).height(F).color(B.map(function(a,b){return a.color||d(a,b)}).filter(function(a,b){return!B[b].disabled})),n.defined(m.defined()).width(E).height(G).color(B.map(function(a,b){return a.color||d(a,b)}).filter(function(a,b){return!B[b].disabled})),L.attr("transform","translate("+b.left+","+b.top+")"),s.ticks(E/100).tickSize(-F,0),t.ticks(F/36).tickSize(-E,0),L.select(".nv-focus .nv-x.nv-axis").attr("transform","translate(0,"+p.range()[0]+")"),L.select(".nv-context").attr("transform","translate(0,"+(F+b.bottom+c.top)+")");var M=L.select(".nv-context .nv-linesWrap").datum(B.filter(function(a){return!a.disabled}));d3.transition(M).call(n),i&&y.extent(i);var N=L.select(".nv-brushBackground").selectAll("g").data([i||y.extent()]),O=N.enter().append("g");O.append("rect").attr("class","left").attr("x",0).attr("y",0).attr("height",G),O.append("rect").attr("class","right").attr("x",0).attr("y",0).attr("height",G),gBrush=L.select(".nv-x.nv-brush").call(y),gBrush.selectAll("rect").attr("height",G),gBrush.selectAll(".resize").append("path").attr("d",Q),R(),u.ticks(E/100).tickSize(-G,0),L.select(".nv-context .nv-x.nv-axis").attr("transform","translate(0,"+r.range()[0]+")"),d3.transition(L.select(".nv-context .nv-x.nv-axis")).call(u),v.ticks(G/36).tickSize(-E,0),d3.transition(L.select(".nv-context .nv-y.nv-axis")).call(v),L.select(".nv-focus .nv-x.nv-axis").attr("transform","translate(0,"+p.range()[0]+")"),L.select(".nv-context .nv-x.nv-axis").attr("transform","translate(0,"+r.range()[0]+")"),w.dispatch.on("legendClick",function(a,b){a.disabled=!a.disabled,B.filter(function(a){return!a.disabled}).length||B.map(function(a){a.disabled=!1,H.selectAll(".nv-series").classed("disabled",!1);return a}),k.transition().call(A)}),m.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],x.tooltipShow(a)}),j&&x.on("tooltipShow",function(a){z(a,D.parentNode)}),m.dispatch.on("elementMouseout.tooltip",function(a){x.tooltipHide(a)}),j&&x.on("tooltipHide",a.tooltip.cleanup)}),A.update=function(){A(k)},A.container=this;return A}var b={top:30,right:30,bottom:30,left:60},c={top:0,right:30,bottom:20,left:60},d=a.utils.defaultColor(),e=null,f=null,g=100,h=!0,i=null,j=!0,k=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" at "+b+"

"},l="No Data Available.",m=a.models.line().clipEdge(!0),n=a.models.line().interactive(!1),o=m.xScale(),p=m.yScale(),q=n.xScale(),r=n.yScale(),s=a.models.axis().scale(o).orient("bottom").tickPadding(5),t=a.models.axis().scale(p).orient("left"),u=a.models.axis().scale(q).orient("bottom").tickPadding(5),v=a.models.axis().scale(r).orient("left"),w=a.models.legend().height(30),x=d3.dispatch("tooltipShow","tooltipHide"),y=d3.svg.brush().x(q),z=function(b,c){var d=b.pos[0]+(c.offsetLeft||0),e=b.pos[1]+(c.offsetTop||0),f=s.tickFormat()(m.x()(b.point,b.pointIndex)),g=t.tickFormat()(m.y()(b.point,b.pointIndex)),h=k(b.series.key,f,g,b,A);a.tooltip.show([d,e],h,null,null,c)};A.dispatch=x,A.legend=w,A.lines=m,A.lines2=n,A.xAxis=s,A.yAxis=t,A.x2Axis=u,A.y2Axis=v,d3.rebind(A,m,"defined","isArea","size","xDomain","yDomain","forceX","forceY","interactive","clipEdge","clipVoronoi","id"),A.x=function(a){if(!arguments.length)return m.x;m.x(a),n.x(a);return A},A.y=function(a){if(!arguments.length)return m.y;m.y(a),n.y(a);return A},A.margin=function(a){if(!arguments.length)return b;b=a;return A},A.margin2=function(a){if(!arguments.length)return c;c=a;return A},A.width=function(a){if(!arguments.length)return e;e=a;return A},A.height=function(a){if(!arguments.length)return f;f=a;return A},A.color=function(b){if(!arguments.length)return d;d=a.utils.getColor(b),w.color(d);return A},A.showLegend=function(a){if(!arguments.length)return h;h=a;return A},A.tooltips=function(a){if(!arguments.length)return j;j=a;return A},A.tooltipContent=function(a){if(!arguments.length)return k;k=a;return A},A.interpolate=function(a){if(!arguments.length)return m.interpolate();m.interpolate(a),n.interpolate(a);return A},A.noData=function(a){if(!arguments.length)return l;l=a;return A},A.xTickFormat=function(a){if(!arguments.length)return s.tickFormat();s.tickFormat(a),u.tickFormat(a);return A},A.yTickFormat=function(a){if(!arguments.length)return t.tickFormat();t.tickFormat(a),v.tickFormat(a);return A};return A},a.models.multiBar=function(){function t(a){a.each(function(a){var t=c-b.left-b.right,u=d-b.top-b.bottom,v=d3.select(this);l&&(a=d3.layout.stack().offset("zero").values(function(a){return a.values}).y(i)(a)),a=a.map(function(a,b){a.values=a.values.map(function(a){a.series=b;return a});return a});var w=o&&p?[]:a.map(function(a){return a.values.map(function(a,b){return{x:h(a,b),y:i(a,b),y0:a.y0}})});e.domain(d3.merge(w).map(function(a){return a.x})).rangeBands([0,t],.1),f.domain(p||d3.extent(d3.merge(w).map(function(a){return a.y+(l?a.y0:0)}).concat(j))).range([u,0]);if(e.domain()[0]===e.domain()[1]||f.domain()[0]===f.domain()[1])singlePoint=!0;e.domain()[0]===e.domain()[1]&&(e.domain()[0]?e.domain([e.domain()[0]-e.domain()[0]*.01,e.domain()[1]+e.domain()[1]*.01]):e.domain([-1,1])),f.domain()[0]===f.domain()[1]&&(f.domain()[0]?f.domain([f.domain()[0]+f.domain()[0]*.01,f.domain()[1]-f.domain()[1]*.01]):f.domain([-1,1])),r=r||e,s=s||f;var z=v.selectAll("g.nv-wrap.nv-multibar").data([a]),A=z.enter().append("g").attr("class","nvd3 nv-wrap nv-multibar"),B=A.append("defs"),C=A.append("g"),D=z.select("g");C.append("g").attr("class","nv-groups"),z.attr("transform","translate("+b.left+","+b.top+")"),B.append("clipPath").attr("id","nv-edge-clip-"+g).append("rect"),z.select("#nv-edge-clip-"+g+" rect").attr("width",t).attr("height",u),D.attr("clip-path",k?"url(#nv-edge-clip-"+g+")":"");var E=z.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});E.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),d3.transition(E.exit()).selectAll("rect.nv-bar").delay(function(b,c){return c*n/a[0].values.length}).attr("y",function(a){return l?s(a.y0):s(0)}).attr("height",0).remove(),E.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}).style("fill",function(a,b){return m(a,b)}).style("stroke",function(a,b){return m(a,b)}),d3.transition(E).style("stroke-opacity",1).style("fill-opacity",.75);var F=E.selectAll("rect.nv-bar").data(function(a){return a.values});F.exit().remove();var G=F.enter().append("rect").attr("class",function(a,b){return i(a,b)<0?"nv-bar negative":"nv-bar positive"}).attr("x",function(b,c,d){return l?0:d*e.rangeBand()/a.length}).attr("y",function(a){return s(l?a.y0:0)}).attr("height",0).attr("width",e.rangeBand()/(l?1:a.length));F.on("mouseover",function(b,c){d3.select(this).classed("hover",!0),q.elementMouseover({value:i(b,c),point:b,series:a[b.series],pos:[e(h(b,c))+e.rangeBand()*(l?a.length/2:b.series+.5)/a.length,f(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("mouseout",function(b,c){d3.select(this).classed("hover",!1),q.elementMouseout({value:i(b,c),point:b,series:a[b.series],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("click",function(b,c){q.elementClick({value:i(b,c),point:b,series:a[b.series],pos:[e(h(b,c))+e.rangeBand()*(l?a.length/2:b.series+.5)/a.length,f(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()}).on("dblclick",function(b,c){q.elementDblClick({value:i(b,c),point:b,series:a[b.series],pos:[e(h(b,c))+e.rangeBand()*(l?a.length/2:b.series+.5)/a.length,f(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()}),F.attr("class",function(a,b){return i(a,b)<0?"nv-bar negative":"nv-bar positive"}).attr("transform",function(a,b){return"translate("+e(h(a,b))+",0)"}),l?d3.transition(F).delay(function(b,c){return c*n/a[0].values.length}).attr("y",function(a,b){return f(i(a,b)+(l?a.y0:0))}).attr("height",function(a,b){return Math.abs(f(a.y+(l?a.y0:0))-f(l?a.y0:0))}).each("end",function(){d3.transition(d3.select(this)).attr("x",function(b,c){return l?0:b.series*e.rangeBand()/a.length}).attr("width",e.rangeBand()/(l?1:a.length))}):d3.transition(F).delay(function(b,c){return c*n/a[0].values.length}).attr("x",function(b,c){return b.series*e.rangeBand()/a.length}).attr("width",e.rangeBand()/a.length).each("end",function(){d3.transition(d3.select(this)).attr("y",function(a,b){return i(a,b)<0?f(0):f(i(a,b))}).attr("height",function(a,b){return Math.abs(f(i(a,b))-f(0))})}),r=e.copy(),s=f.copy()});return t}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=d3.scale.ordinal(),f=d3.scale.linear(),g=Math.floor(Math.random()*1e4),h=function(a){return a.x},i=function(a){return a.y},j=[0],k=!0,l=!1,m=a.utils.defaultColor(),n=1200,o,p,q=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout"),r,s;t.dispatch=q,t.x=function(a){if(!arguments.length)return h;h=a;return t},t.y=function(a){if(!arguments.length)return i;i=a;return t},t.margin=function(a){if(!arguments.length)return b;b=a;return t},t.width=function(a){if(!arguments.length)return c;c=a;return t},t.height=function(a){if(!arguments.length)return d;d=a;return t},t.xScale=function(a){if(!arguments.length)return e;e=a;return t},t.yScale=function(a){if(!arguments.length)return f;f=a;return t},t.xDomain=function(a){if(!arguments.length)return o;o=a;return t},t.yDomain=function(a){if(!arguments.length)return p;p=a;return t},t.forceY=function(a){if(!arguments.length)return j;j=a;return t},t.stacked=function(a){if(!arguments.length)return l;l=a;return t},t.clipEdge=function(a){if(!arguments.length)return k;k=a;return t},t.color=function(b){if(!arguments.length)return m;m=a.utils +.getColor(b);return t},t.id=function(a){if(!arguments.length)return g;g=a;return t},t.delay=function(a){if(!arguments.length)return n;n=a;return t};return t},a.models.multiBarChart=function(){function v(a){a.each(function(p){var w=d3.select(this),z=this,A=(h||parseInt(w.style("width"))||960)-g.left-g.right,B=(i||parseInt(w.style("height"))||400)-g.top-g.bottom;if(!p||!p.length||!p.filter(function(a){return a.values.length}).length){w.append("text").attr("class","nvd3 nv-noData").attr("x",A/2).attr("y",B/2).attr("dy","-.7em").style("text-anchor","middle").text(s);return v}w.select(".nv-noData").remove(),q=b.xScale(),r=b.yScale();var C=w.selectAll("g.nv-wrap.nv-multiBarWithLegend").data([p]),D=C.enter().append("g").attr("class","nvd3 nv-wrap nv-multiBarWithLegend").append("g"),E=C.select("g");D.append("g").attr("class","nv-x nv-axis"),D.append("g").attr("class","nv-y nv-axis"),D.append("g").attr("class","nv-barsWrap"),D.append("g").attr("class","nv-legendWrap"),D.append("g").attr("class","nv-controlsWrap"),l&&(e.width(A/2),E.select(".nv-legendWrap").datum(p).call(e),g.top!=e.height()&&(g.top=e.height(),B=(i||parseInt(w.style("height"))||400)-g.top-g.bottom),E.select(".nv-legendWrap").attr("transform","translate("+A/2+","+ -g.top+")"));if(k){var F=[{key:"Grouped",disabled:b.stacked()},{key:"Stacked",disabled:!b.stacked()}];f.width(180).color(["#444","#444","#444"]),E.select(".nv-controlsWrap").datum(F).attr("transform","translate(0,"+ -g.top+")").call(f)}C.attr("transform","translate("+g.left+","+g.top+")"),b.width(A).height(B).color(p.map(function(a,b){return a.color||j(a,b)}).filter(function(a,b){return!p[b].disabled}));var G=E.select(".nv-barsWrap").datum(p.filter(function(a){return!a.disabled}));d3.transition(G).call(b),c.scale(q).ticks(A/100).tickSize(-B,0),E.select(".nv-x.nv-axis").attr("transform","translate(0,"+r.range()[0]+")"),d3.transition(E.select(".nv-x.nv-axis")).call(c);var H=E.select(".nv-x.nv-axis > g").selectAll("g");H.selectAll("line, text").style("opacity",1),m&&H.filter(function(a,b){return b%Math.ceil(p[0].values.length/(A/100))!==0}).selectAll("text, line").style("opacity",0),n&&H.selectAll("text").attr("transform",function(a,b,c){return"rotate("+n+" 0,0)"}).attr("text-transform",n>0?"start":"end"),d.scale(r).ticks(B/36).tickSize(-A,0),d3.transition(E.select(".nv-y.nv-axis")).call(d),e.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,p.filter(function(a){return!a.disabled}).length||p.map(function(a){a.disabled=!1,C.selectAll(".nv-series").classed("disabled",!1);return a}),a.transition().call(v)}),f.dispatch.on("legendClick",function(c,d){if(!!c.disabled){F=F.map(function(a){a.disabled=!0;return a}),c.disabled=!1;switch(c.key){case"Grouped":b.stacked(!1);break;case"Stacked":b.stacked(!0)}a.transition().call(v)}}),t.on("tooltipShow",function(a){o&&u(a,z.parentNode)}),v.update=function(){a.transition().call(v)},v.container=this});return v}var b=a.models.multiBar(),c=a.models.axis(),d=a.models.axis(),e=a.models.legend(),f=a.models.legend(),g={top:30,right:20,bottom:50,left:60},h=null,i=null,j=a.utils.defaultColor(),k=!0,l=!0,m=!0,n=0,o=!0,p=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" on "+b+"

"},q,r,s="No Data Available.",t=d3.dispatch("tooltipShow","tooltipHide");b.stacked(!1),c.orient("bottom").tickPadding(5).highlightZero(!1).showMaxMin(!1).tickFormat(function(a){return a}),d.orient("left").tickFormat(d3.format(",.1f"));var u=function(e,f){var g=e.pos[0]+(f.offsetLeft||0),h=e.pos[1]+(f.offsetTop||0),i=c.tickFormat()(b.x()(e.point,e.pointIndex)),j=d.tickFormat()(b.y()(e.point,e.pointIndex)),k=p(e.series.key,i,j,e,v);a.tooltip.show([g,h],k,e.value<0?"n":"s",null,f)};b.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+g.left,a.pos[1]+g.top],t.tooltipShow(a)}),b.dispatch.on("elementMouseout.tooltip",function(a){t.tooltipHide(a)}),t.on("tooltipHide",function(){o&&a.tooltip.cleanup()}),v.dispatch=t,v.multibar=b,v.legend=e,v.xAxis=c,v.yAxis=d,d3.rebind(v,b,"x","y","xDomain","yDomain","forceX","forceY","clipEdge","id","stacked","delay"),v.margin=function(a){if(!arguments.length)return g;g=a;return v},v.width=function(a){if(!arguments.length)return h;h=a;return v},v.height=function(a){if(!arguments.length)return i;i=a;return v},v.color=function(b){if(!arguments.length)return j;j=a.utils.getColor(b),e.color(j);return v},v.showControls=function(a){if(!arguments.length)return k;k=a;return v},v.showLegend=function(a){if(!arguments.length)return l;l=a;return v},v.reduceXTicks=function(a){if(!arguments.length)return m;m=a;return v},v.rotateLabels=function(a){if(!arguments.length)return n;n=a;return v},v.tooltip=function(a){if(!arguments.length)return p;p=a;return v},v.tooltips=function(a){if(!arguments.length)return o;o=a;return v},v.tooltipContent=function(a){if(!arguments.length)return p;p=a;return v},v.noData=function(a){if(!arguments.length)return s;s=a;return v};return v},a.models.multiBarHorizontal=function(){function v(a){a.each(function(a){var e=c-b.left-b.right,p=d-b.top-b.bottom,v=d3.select(this);l&&(a=d3.layout.stack().offset("zero").values(function(a){return a.values}).y(i)(a)),a=a.map(function(a,b){a.values=a.values.map(function(a){a.series=b;return a});return a});var w=q&&r?[]:a.map(function(a){return a.values.map(function(a,b){return{x:h(a,b),y:i(a,b),y0:a.y0}})});f.domain(q||d3.merge(w).map(function(a){return a.x})).rangeBands([0,p],.1),g.domain(r||d3.extent(d3.merge(w).map(function(a){return a.y+(l?a.y0:0)}).concat(j))),m&&!l?g.range([g.domain()[0]<0?n:0,e-(g.domain()[1]>0?n:0)]):g.range([0,e]),t=t||f,u=u||d3.scale.linear().domain(g.domain()).range([g(0),g(0)]);var z=d3.select(this).selectAll("g.nv-wrap.nv-multibarHorizontal").data([a]),A=z.enter().append("g").attr("class","nvd3 nv-wrap nv-multibarHorizontal"),B=A.append("defs"),C=A.append("g"),D=z.select("g");C.append("g").attr("class","nv-groups"),z.attr("transform","translate("+b.left+","+b.top+")");var E=z.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});E.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),d3.transition(E.exit()).style("stroke-opacity",1e-6).style("fill-opacity",1e-6).remove(),E.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}).style("fill",function(a,b){return k(a,b)}).style("stroke",function(a,b){return k(a,b)}),d3.transition(E).style("stroke-opacity",1).style("fill-opacity",.75);var F=E.selectAll("g.nv-bar").data(function(a){return a.values});F.exit().remove();var G=F.enter().append("g").attr("transform",function(b,c,d){return"translate("+u(l?b.y0:0)+","+(l?0:d*f.rangeBand()/a.length+f(h(b,c)))+")"});G.append("rect").attr("width",0).attr("height",f.rangeBand()/(l?1:a.length)),F.on("mouseover",function(b,c){d3.select(this).classed("hover",!0),s.elementMouseover({value:i(b,c),point:b,series:a[b.series],pos:[g(i(b,c)+(l?b.y0:0)),f(h(b,c))+f.rangeBand()*(l?a.length/2:b.series+.5)/a.length],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("mouseout",function(b,c){d3.select(this).classed("hover",!1),s.elementMouseout({value:i(b,c),point:b,series:a[b.series],pointIndex:c,seriesIndex:b.series,e:d3.event})}).on("click",function(b,c){s.elementClick({value:i(b,c),point:b,series:a[b.series],pos:[f(h(b,c))+f.rangeBand()*(l?a.length/2:b.series+.5)/a.length,g(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()}).on("dblclick",function(b,c){s.elementDblClick({value:i(b,c),point:b,series:a[b.series],pos:[f(h(b,c))+f.rangeBand()*(l?a.length/2:b.series+.5)/a.length,g(i(b,c)+(l?b.y0:0))],pointIndex:c,seriesIndex:b.series,e:d3.event}),d3.event.stopPropagation()}),m&&!l?(G.append("text").attr("text-anchor",function(a,b){return i(a,b)<0?"end":"start"}),F.select("text").attr("y",f.rangeBand()/2).attr("dy","-.32em").text(function(a,b){return o(i(a,b))}),d3.transition(F).select("text").attr("x",function(a,b){return i(a,b)<0?-4:g(i(a,b))-g(0)+4})):F.selectAll("text").remove(),F.attr("class",function(a,b){return i(a,b)<0?"nv-bar negative":"nv-bar positive"}),l?d3.transition(F).attr("transform",function(a,b){return"translate("+g(a.y0)+","+f(h(a,b))+")"}).select("rect").attr("width",function(a,b){return Math.abs(g(i(a,b)+a.y0)-g(a.y0))}).attr("height",f.rangeBand()):d3.transition(F).attr("transform",function(b,c){return"translate("+(i(b,c)<0?g(i(b,c)):g(0))+","+(b.series*f.rangeBand()/a.length+f(h(b,c)))+")"}).select("rect").attr("height",f.rangeBand()/a.length).attr("width",function(a,b){return Math.abs(g(i(a,b))-g(0))}),t=f.copy(),u=g.copy()});return v}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=Math.floor(Math.random()*1e4),f=d3.scale.ordinal(),g=d3.scale.linear(),h=function(a){return a.x},i=function(a){return a.y},j=[0],k=a.utils.defaultColor(),l=!1,m=!1,n=60,o=d3.format(",.2f"),p=1200,q,r,s=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout"),t,u;v.dispatch=s,v.x=function(a){if(!arguments.length)return h;h=a;return v},v.y=function(a){if(!arguments.length)return i;i=a;return v},v.margin=function(a){if(!arguments.length)return b;b=a;return v},v.width=function(a){if(!arguments.length)return c;c=a;return v},v.height=function(a){if(!arguments.length)return d;d=a;return v},v.xScale=function(a){if(!arguments.length)return f;f=a;return v},v.yScale=function(a){if(!arguments.length)return g;g=a;return v},v.xDomain=function(a){if(!arguments.length)return q;q=a;return v},v.yDomain=function(a){if(!arguments.length)return r;r=a;return v},v.forceY=function(a){if(!arguments.length)return j;j=a;return v},v.stacked=function(a){if(!arguments.length)return l;l=a;return v},v.color=function(b){if(!arguments.length)return k;k=a.utils.getColor(b);return v},v.id=function(a){if(!arguments.length)return e;e=a;return v},v.delay=function(a){if(!arguments.length)return p;p=a;return v},v.showValues=function(a){if(!arguments.length)return m;m=a;return v},v.valueFormat=function(a){if(!arguments.length)return o;o=a;return v},v.valuePadding=function(a){if(!arguments.length)return n;n=a;return v};return v},a.models.multiBarHorizontalChart=function(){function u(a){a.each(function(m){var o=d3.select(this),v=this,w=(h||parseInt(o.style("width"))||960)-g.left-g.right,z=(i||parseInt(o.style("height"))||400)-g.top-g.bottom;if(!m||!m.length||!m.filter(function(a){return a.values.length}).length){o.append("text").attr("class","nvd3 nv-noData").attr("x",w/2).attr("y",z/2).attr("dy","-.7em").style("text-anchor","middle").text(r);return u}o.select(".nv-noData").remove(),p=b.xScale(),q=b.yScale();var A=o.selectAll("g.nv-wrap.nv-multiBarHorizontalChart").data([m]),B=A.enter().append("g").attr("class","nvd3 nv-wrap nv-multiBarHorizontalChart").append("g"),C=A.select("g");B.append("g").attr("class","nv-x nv-axis"),B.append("g").attr("class","nv-y nv-axis"),B.append("g").attr("class","nv-barsWrap"),B.append("g").attr("class","nv-legendWrap"),B.append("g").attr("class","nv-controlsWrap"),l&&(e.width(w/2),C.select(".nv-legendWrap").datum(m).call(e),g.top!=e.height()&&(g.top=e.height(),z=(i||parseInt(o.style("height"))||400)-g.top-g.bottom),C.select(".nv-legendWrap").attr("transform","translate("+w/2+","+ -g.top+")"));if(k){var D=[{key:"Grouped",disabled:b.stacked()},{key:"Stacked",disabled:!b.stacked()}];f.width(180).color(["#444","#444","#444"]),C.select(".nv-controlsWrap").datum(D).attr("transform","translate(0,"+ -g.top+")").call(f)}A.attr("transform","translate("+g.left+","+g.top+")"),b.width(w).height(z).color(m.map(function(a,b){return a.color||j(a,b)}).filter(function(a,b){return!m[b].disabled}));var E=C.select(".nv-barsWrap").datum(m.filter(function(a){return!a.disabled}));d3.transition(E).call(b),c.scale(p).ticks(z/24).tickSize(-w,0),d3.transition(C.select(".nv-x.nv-axis")).call(c);var F=C.select(".nv-x.nv-axis").selectAll("g");F.selectAll("line, text").style("opacity",1),d.scale(q).ticks(w/100).tickSize(-z,0),C.select(".nv-y.nv-axis").attr("transform","translate(0,"+z+")"),d3.transition(C.select(".nv-y.nv-axis")).call(d),e.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,m.filter(function(a){return!a.disabled}).length||m.map(function(a){a.disabled=!1,A.selectAll(".nv-series").classed("disabled",!1);return a}),a.transition().call(u)}),f.dispatch.on("legendClick",function(c,d){if(!!c.disabled){D=D.map(function(a){a.disabled=!0;return a}),c.disabled=!1;switch(c.key){case"Grouped":b.stacked(!1);break;case"Stacked":b.stacked(!0)}a.transition().call(u)}}),s.on("tooltipShow",function(a){n&&t(a,v.parentNode)}),u.update=function(){a.transition().call(u)},u.container=this});return u}var b=a.models.multiBarHorizontal(),c=a.models.axis(),d=a.models.axis(),e=a.models.legend().height(30),f=a.models.legend().height(30),g={top:30,right:20,bottom:50,left:60},h=null,i=null,j=a.utils.defaultColor(),k=!0,l=!0,m=!1,n=!0,o=function(a,b,c,d,e){return"

"+a+" - "+b+"

"+"

"+c+"

"},p,q,r="No Data Available.",s=d3.dispatch("tooltipShow","tooltipHide");b.stacked(m),c.orient("left").tickPadding(5).highlightZero(!1).showMaxMin(!1).tickFormat(function(a){return a}),d.orient("bottom").tickFormat(d3.format(",.1f"));var t=function(e,f){var g=e.pos[0]+(f.offsetLeft||0),h=e.pos[1]+(f.offsetTop||0),i=c.tickFormat()(b.x()(e.point,e.pointIndex)),j=d.tickFormat()(b.y()(e.point,e.pointIndex)),k=o(e.series.key,i,j,e,u);a.tooltip.show([g,h],k,e.value<0?"e":"w",null,f)};b.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+g.left,a.pos[1]+g.top],s.tooltipShow(a)}),b.dispatch.on("elementMouseout.tooltip",function(a){s.tooltipHide(a)}),s.on("tooltipHide",function(){n&&a.tooltip.cleanup()}),u.dispatch=s,u.multibar=b,u.legend=e,u.xAxis=c,u.yAxis=d,d3.rebind(u,b,"x","y","xDomain","yDomain","forceX","forceY","clipEdge","id","delay","showValues","valueFormat","stacked"),u.margin=function(a){if(!arguments.length)return g;g=a;return u},u.width=function(a){if(!arguments.length)return h;h=a;return u},u.height=function(a){if(!arguments.length)return i;i=a;return u},u.color=function(b){if(!arguments.length)return j;j=a.utils.getColor(b),e.color(j);return u},u.showControls=function(a){if(!arguments.length)return k;k=a;return u},u.showLegend=function(a){if(!arguments.length)return l;l=a;return u},u.tooltip=function(a){if(!arguments.length)return o;o=a;return u},u.tooltips=function(a){if(!arguments.length)return n;n=a;return u},u.tooltipContent=function(a){if(!arguments.length)return o;o=a;return u},u.noData=function(a){if(!arguments.length)return r;r=a;return u};return u},a.models.multiChart=function(){function y(a){a.each(function(h){var j=d3.select(this),z=this,A=(d||parseInt(j.style("width"))||960)-b.left-b.right,B=(e||parseInt(j.style("height"))||400)-b.top-b.bottom,C=h.filter(function(a){return!a.disabled&&a.type=="line"&&a.yAxis==1}),D=h.filter(function(a){return!a.disabled&&a.type=="line"&&a.yAxis==2}),E=h.filter(function(a){return!a.disabled&&a.type=="bar"&&a.yAxis==1}),F=h.filter(function(a){return!a.disabled&&a.type=="bar"&&a.yAxis==2}),G=h.filter(function(a){return!a.disabled&&a.type=="area"&&a.yAxis==1}),H=h.filter(function(a){return!a.disabled&&a.type=="area"&&a.yAxis==2}),I=h.filter(function(a){return!a.disabled&&a.yAxis==1}).map(function(a){return a.values.map(function(a,b){return{x:a.x,y:a.y}})}),J=h.filter(function(a){return!a.disabled&&a.yAxis==2}).map(function(a){return a.values.map(function(a,b){return{x:a.x,y:a.y}})});i.domain(d3.extent(d3.merge(I.concat(J)),function(a){return a.x})).range([0,A]);var K=j.selectAll("g.wrap.multiChart").data([h]),L=K.enter().append("g").attr("class","wrap nvd3 multiChart").append("g");L.append("g").attr("class","x axis"),L.append("g").attr("class","y1 axis"),L.append("g").attr("class","y2 axis"),L.append("g").attr("class","lines1Wrap"),L.append("g").attr("class","lines2Wrap"),L.append("g").attr("class","bars1Wrap"),L.append("g").attr("class","bars2Wrap"),L.append("g").attr("class","stack1Wrap"),L.append("g").attr("class","stack2Wrap"),L.append("g").attr("class","legendWrap");var M=K.select("g");f&&(v.width(A/2),M.select(".legendWrap").datum(h.map(function(a){a.originalKey=a.originalKey===undefined?a.key:a.originalKey,a.key=a.originalKey+(a.yAxis==1?"":" (right axis)");return a})).call(v),b.top!=v.height()&&(b.top=v.height(),B=(e||parseInt(j.style("height"))||400)-b.top-b.bottom),M.select(".legendWrap").attr("transform","translate("+A/2+","+ -b.top+")")),m.width(A).height(B).interpolate("monotone").color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==1&&h[b].type=="line"})),n.width(A).height(B).interpolate("monotone").color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==2&&h[b].type=="line"})),o.width(A).height(B).color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==1&&h[b].type=="bar"})),p.width(A).height(B).color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==2&&h[b].type=="bar"})),q.width(A).height(B).color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==1&&h[b].type=="area"})),r.width(A).height(B).color(h.map(function(a,b){return a.color||c[b%c.length]}).filter(function(a,b){return!h[b].disabled&&h[b].yAxis==2&&h[b].type=="area"})),M.attr("transform","translate("+b.left+","+b.top+")");var N=M.select(".lines1Wrap").datum(C),O=M.select(".bars1Wrap").datum(E),P=M.select(".stack1Wrap").datum(G),Q=M.select(".lines2Wrap").datum(D),R=M.select(".bars2Wrap").datum(F),S=M.select(".stack2Wrap").datum(H),T=G.length?G.map(function(a){return a.values}).reduce(function(a,b){return a.map(function(a,c){return{x:a.x,y:a.y+b[c].y}})}).concat([{x:0,y:0}]):[],U=H.length?H.map(function(a){return a.values}).reduce(function(a,b){return a.map(function(a,c){return{x:a.x,y:a.y+b[c].y}})}).concat([{x:0,y:0}]):[];k.domain(d3.extent(d3.merge(I).concat(T),function(a){return a.y})).range([0,B]),l.domain(d3.extent(d3.merge(J).concat(U),function(a){return a.y})).range([0,B]),m.yDomain(k.domain()),o.yDomain(k.domain()),q.yDomain(k.domain()),n.yDomain(l.domain()),p.yDomain(l.domain()),r.yDomain(l.domain()),G.length&&d3.transition(P).call(q),H.length&&d3.transition(S).call(r),E.length&&d3.transition(O).call(o),F.length&&d3.transition(R).call(p),C.length&&d3.transition(N).call(m),D.length&&d3.transition(Q).call(n),s.ticks(A/100).tickSize(-B,0),M.select(".x.axis").attr("transform","translate(0,"+B+")"),d3.transition(M.select(".x.axis")).call(s),t.ticks(B/36).tickSize(-A,0),d3.transition(M.select(".y1.axis")).call(t),u.ticks(B/36).tickSize(-A,0),d3.transition(M.select(".y2.axis")).call(u),M.select(".y2.axis").style("opacity",J.length?1:0).attr("transform","translate("+i.range()[1]+",0)"),v.dispatch.on("legendClick",function(b,c){b.disabled=!b.disabled,h.filter(function(a){return!a.disabled}).length||h.map(function(a){a.disabled=!1,K.selectAll(".series").classed("disabled",!1);return a}),a.transition().call(y)}),w.on("tooltipShow",function(a){g&&x(a,z.parentNode)})}),y.update=function(){y(a)},y.container=this;return y}var b={top:30,right:20,bottom:50,left:60},c=d3.scale.category20().range(),d=null,e=null,f=!0,g=!0,h=function(a,b,c,d,e){return"

"+a+"

"+"

"+c+" at "+b+"

"},i,j,i=d3.scale.linear(),k=d3.scale.linear(),l=d3.scale.linear(),m=a.models.line().yScale(k),n=a.models.line().yScale(l),o=a.models.multiBar().stacked(!1).yScale(k),p=a.models.multiBar().stacked(!1).yScale(l),q=a.models.stackedArea().yScale(k),r=a.models.stackedArea().yScale(l),s=a.models.axis().scale(i).orient("bottom").tickPadding(5),t=a.models.axis().scale(k).orient("left"),u=a.models.axis().scale(l).orient("right"),v=a.models.legend().height(30),w=d3.dispatch("tooltipShow","tooltipHide"),x=function(b,c){var d=b.pos[0]+(c.offsetLeft||0),e=b.pos[1]+(c.offsetTop||0),f=s.tickFormat()(m.x()(b.point,b.pointIndex)),g=(b.series.bar?t:u).tickFormat()(m.y()(b.point,b.pointIndex)),i=h(b.series.key,f,g,b,y);a.tooltip.show([d,e],i,undefined,undefined,c.offsetParent)};m.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),m.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),n.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),n.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),o.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),o.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),p.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),p.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),q.dispatch.on("tooltipShow",function(a){if(!Math.round(q.y()(a.point)*100)){setTimeout(function(){d3.selectAll(".point.hover").classed("hover",!1)},0);return!1}a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),q.dispatch.on("tooltipHide",function(a){w.tooltipHide(a)}),r.dispatch.on("tooltipShow",function(a){if(!Math.round(r.y()(a.point)*100)){setTimeout(function(){d3.selectAll(".point.hover").classed("hover",!1)},0);return!1}a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),r.dispatch.on("tooltipHide",function(a){w.tooltipHide(a)}),m.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),m.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),n.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],w.tooltipShow(a)}),n.dispatch.on("elementMouseout.tooltip",function(a){w.tooltipHide(a)}),w.on("tooltipHide",function(){g&&a.tooltip.cleanup()}),y.dispatch=w,y.lines1=m,y.lines2=n,y.bars1=o,y.bars2=p,y.stack1=q,y.stack2=r,y.xAxis=s,y.yAxis1=t,y.yAxis2=u,y.x=function(a){if(!arguments.length)return getX;getX=a,m.x(a),o.x(a);return y},y.y=function(a){if(!arguments.length)return getY;getY=a,m.y(a),o.y(a);return y},y.margin=function(a){if(!arguments.length)return b;b=a;return y},y.width=function(a){if(!arguments.length)return d;d=a;return y},y.height=function(a){if(!arguments.length)return e;e=a;return y},y.color=function(a){if(!arguments.length)return c;c=a,v.color(a);return y},y.showLegend=function(a){if(!arguments.length)return f;f=a;return y},y.tooltips=function(a){if(!arguments.length)return g;g=a;return y},y.tooltipContent=function(a){if(!arguments.length)return h;h=a;return y};return y},a.models.ohlcBar=function(){function u(a){a.each(function(a){var q=c-b.left-b.right,u=d-b.top-b.bottom,v=d3.select(this);f.domain(r||d3.extent(a[0].values.map(h).concat(n))).range([0,q]),g.domain(s||[d3.min(a[0].values.map(m).concat(o)),d3.max(a[0].values.map(l).concat(o))]).range([u,0]);if(f.domain()[0]===f.domain()[1]||g.domain()[0]===g.domain()[1])singlePoint=!0;f.domain()[0]===f.domain()[1]&&(f.domain()[0]?f.domain([f.domain()[0]-f.domain()[0]*.01,f.domain()[1]+f.domain()[1]*.01]):f.domain([-1,1])),g.domain()[0]===g.domain()[1]&&(g.domain()[0]?g.domain([g.domain()[0]+g.domain()[0]*.01,g.domain()[1]-g.domain()[1]*.01]):g.domain([-1,1]));var w=d3.select(this).selectAll("g.nv-wrap.nv-ohlcBar").data([a[0].values]),z=w.enter().append("g").attr("class","nvd3 nv-wrap nv-ohlcBar"),A=z.append("defs"),B=z.append("g"),C=w.select("g");B.append("g").attr("class","nv-ticks"),w.attr("transform","translate("+b.left+","+b.top+")"),v.on("click",function(a,b){t.chartClick({data:a,index:b,pos:d3.event,id:e})}),A.append("clipPath").attr("id","nv-chart-clip-path-"+e).append("rect"),w.select("#nv-chart-clip-path-"+e+" rect").attr("width",q).attr("height",u),C.attr("clip-path",p?"url(#nv-chart-clip-path-"+e+")":"");var D=w.select(".nv-ticks").selectAll(".nv-tick").data(function(a){return a});D.exit().remove();var E=D.enter().append("path").attr("class",function(a,b,c){return(j(a,b)>k(a,b)?"nv-tick negative":"nv-tick positive")+" nv-tick-"+c+"-"+b}).attr("d",function(b,c){var d=q/a[0].values.length*.9;return"m0,0l0,"+(g(j(b,c))-g(l(b,c)))+"l"+ -d/2+",0l"+d/2+",0l0,"+(g(m(b,c))-g(j(b,c)))+"l0,"+(g(k(b,c))-g(m(b,c)))+"l"+d/2+",0l"+ -d/2+",0z"}).attr("transform",function(a,b){return"translate("+f(h(a,b))+","+g(l(a,b))+")"}).on("mouseover",function(b,c){d3.select(this).classed("hover",!0),t.elementMouseover({point:b,series:a[0],pos:[f(h(b,c)),g(i(b,c))],pointIndex:c,seriesIndex:0,e:d3.event})}).on("mouseout",function(b,c){d3.select(this).classed("hover",!1),t.elementMouseout({point:b,series:a[0],pointIndex:c,seriesIndex:0,e:d3.event})}).on("click",function(a,b){t.elementClick({value:i(a,b),data:a,index:b,pos:[f(h(a,b)),g(i(a,b))],e:d3.event,id:e}),d3.event.stopPropagation()}).on("dblclick",function(a,b){t.elementDblClick({value:i(a,b),data:a,index:b,pos:[f(h(a,b)),g(i(a,b))],e:d3.event,id:e}),d3.event.stopPropagation()});D.attr("class",function(a,b,c){return(j(a,b)>k(a,b)?"nv-tick negative":"nv-tick positive")+" nv-tick-"+c+"-"+b}),d3.transition(D).attr("transform",function(a,b){return"translate("+f(h(a,b))+","+g(l(a,b))+")"}).attr("d",function(b,c){var d=q/a[0].values.length*.9;return"m0,0l0,"+(g(j(b,c))-g(l(b,c)))+"l"+ -d/2+",0l"+d/2+",0l0,"+(g(m(b,c))-g(j(b,c)))+"l0,"+(g(k(b,c))-g(m(b,c)))+"l"+d/2+",0l"+ -d/2+",0z"})});return u}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=Math.floor(Math.random()*1e4),f=d3.scale.linear(),g=d3.scale.linear(),h=function(a){return a.x},i=function(a){return a.y},j=function(a){return a.open},k=function(a){return a.close},l=function(a){return a.high},m=function(a){return a.low},n=[],o=[],p=!0,q=a.utils.defaultColor(),r,s,t=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout");u.dispatch=t,u.x=function(a){if(!arguments.length)return h;h=a;return u},u.y=function(a){if(!arguments.length)return i;i=a;return u},u.open=function(a){if(!arguments.length)return j;j=a;return u},u.close=function(a){if(!arguments.length)return k;k=a;return u},u.high=function(a){if(!arguments.length)return l;l=a;return u},u.low=function(a){if(!arguments.length)return m;m=a;return u},u.margin=function(a){if(!arguments.length)return b;b=a;return u},u.width=function(a){if(!arguments.length)return c;c=a;return u},u.height=function(a){if(!arguments.length)return d;d=a;return u},u.xScale=function(a){if(!arguments.length)return f;f=a;return u},u.yScale=function(a){if(!arguments.length)return g;g=a;return u},u.xDomain=function(a){if(!arguments.length)return r;r=a;return u},u.yDomain=function(a){if(!arguments.length)return s;s=a;return u},u.forceX=function(a){if(!arguments.length)return n;n=a;return u},u.forceY=function(a){if(!arguments.length)return o;o=a;return u},u.clipEdge=function(a){if(!arguments.length)return p;p=a;return u},u.color=function(b){if(!arguments.length)return q;q=a.utils.getColor(b);return u},u.id=function(a){if(!arguments.length)return e;e=a;return u};return u},a.models.pie=function(){function p(a){a.each(function(a){function E(a){a.innerRadius=0;var b=d3.interpolate({startAngle:0,endAngle:0},a);return function(a){return w(b(a))}}function D(a){n||(a.innerRadius=0);var b=d3.interpolate(this._current,a);this._current=b(0);return function(a){return w(b(a))}}function C(a){var b=(a.startAngle+a.endAngle)*90/Math.PI-90;return b>90?b-180:b}var j=c-b.left-b.right,p=d-b.top-b.bottom,q=Math.min(j,p)/2,r=d3.select(this),s=r.selectAll(".nv-wrap.nv-pie").data([e(a[0])]),t=s.enter().append("g").attr("class","nvd3 nv-wrap nv-pie nv-chart-"+h),u=t.append("g"),v=s.select("g");u.append("g").attr("class","nv-pie"),s.attr("transform","translate("+b.left+","+b.top+")"),v.select(".nv-pie").attr("transform","translate("+j/2+","+p/2+")"),r.on("click",function(a,b){o.chartClick({data:a,index:b,pos:d3.event,id:h})});var w=d3.svg.arc().outerRadius(q-q/5);n&&w.innerRadius(q/2);var x=d3.layout.pie().sort(null).value(function(a){return a.disabled?0:g(a)}),y=s.select(".nv-pie").selectAll(".nv-slice").data(x);y.exit().remove();var z=y.enter().append("g").attr("class","nv-slice").on("mouseover",function(a,b){d3.select(this).classed("hover",!0),o.elementMouseover({label:f(a.data),value:g(a.data),point:a.data,pointIndex:b,pos:[d3.event.pageX,d3.event.pageY],id:h})}).on("mouseout",function(a,b){d3.select(this).classed("hover",!1),o.elementMouseout({label:f(a.data),value:g(a.data),point:a.data,index:b,id:h})}).on("click",function(a,b){o.elementClick({label:f(a.data),value:g(a.data),point:a.data,index:b,pos:d3.event,id:h}),d3.event.stopPropagation()}).on("dblclick",function(a,b){o.elementDblClick({label:f(a.data),value:g(a.data),point:a.data,index:b,pos:d3.event,id:h}),d3.event.stopPropagation()});y.attr("fill",function(a,b){return i(a,b)}).attr("stroke",function(a,b){return i(a,b)});var A=z.append("path").each(function(a){this._current=a});d3.transition(y.select("path")).attr("d",w).attrTween("d",D);if(k){var B=w;l&&(B=d3.svg.arc().outerRadius(w.outerRadius())),z.append("g").classed("nv-label",!0).each(function(a,b){var c=d3.select(this);c.attr("transform",function(a){a.outerRadius=q+10,a.innerRadius=q+15;return"translate("+B.centroid(a)+")"}),c.append("rect").style("stroke","#fff").style("fill","#fff").attr("rx",3).attr("ry",3),c.append("text").style("text-anchor","middle").style("fill","#000")}),y.select(".nv-label").transition().attr("transform",function(a){a.outerRadius=q+10,a.innerRadius=q+15;return"translate("+B.centroid(a)+")"}),y.each(function(a,b){var c=d3.select(this);c.select(".nv-label text").text(function(a,b){var c=(a.endAngle-a.startAngle)/(2*Math.PI);return a.value&&c>m?f(a.data):""});var d=c.select("text").node().getBBox();c.select(".nv-label rect").attr("width",d.width+10).attr("height",d.height+10).attr("transform",function(){return"translate("+[d.x-5,d.y-5]+")"})})}});return p}var b={top:0,right:0,bottom:0,left:0},c=500,d=500,e=function(a){return a.values},f=function(a){return a.x},g=function(a){return a.y},h=Math.floor(Math.random()*1e4),i=a.utils.defaultColor(),j=d3.format(",.2f"),k=!0,l=!1,m=.02,n=!1,o=d3.dispatch("chartClick","elementClick","elementDblClick","elementMouseover","elementMouseout");p.dispatch=o,p.margin=function(a){if(!arguments.length)return b;b=a;return p},p.width=function(a){if(!arguments.length)return c;c=a;return p},p.height=function(a){if(!arguments.length)return d;d=a;return p},p.values=function(a){if(!arguments.length)return e;e=a;return p},p.x=function(a){if(!arguments.length)return f;f=a;return p},p.y=function(a){if(!arguments.length)return g;g=d3.functor(a);return p},p.showLabels=function(a){if(!arguments.length)return k;k=a;return p},p.donutLabelsOutside=function(a){if(!arguments.length)return l;l=a;return p},p.donut=function(a){if(!arguments.length)return n;n=a;return p},p.id=function(a){if(!arguments.length)return h;h=a;return p},p.color=function(b){if(!arguments.length)return i;i=a.utils.getColor(b);return p},p.valueFormat=function(a){if(!arguments.length)return j;j=a;return p},p.labelThreshold=function(a){if(!arguments.length)return m;m=a;return p};return p},a.models.pieChart=function(){function n(f){f.each(function(h){var o=d3.select(this),p=this,q=(c||parseInt(o.style("width"))||960)-b.left-b.right,r=(d||parseInt(o.style("height"))||400)-b.top-b.bottom;if(!h||!h.length){o.append("text").attr("class","nvd3 nv-noData").attr("x",q/2).attr("y",r/2).attr("dy","-.7em").style("text-anchor","middle").text(i);return n}o.select(".nv-noData").remove();var s=o.selectAll("g.nv-wrap.nv-pieChart").data([h]),t=s.enter().append("g").attr("class","nvd3 nv-wrap nv-pieChart").append("g");t.append("g").attr("class","nv-pieWrap"),t.append("g").attr("class","nv-legendWrap");var u=s.select("g");e&&(k.width(q).key(j.x()),s.select(".nv-legendWrap").datum(j.values()(h[0])).call(k),b.top!=k.height()&&(b.top=k.height(),r=(d||parseInt(o.style("height"))||400)-b.top-b.bottom),s.select(".nv-legendWrap").attr("transform","translate(0,"+ -b.top+")")),j.width(q).height(r),u.attr("transform","translate("+b.left+","+b.top+")");var v=u.select(".nv-pieWrap").datum(h);d3.transition(v).call(j),k.dispatch.on("legendClick",function(a,b,c){a.disabled=!a.disabled,j.values()(h[0]).filter(function(a){return!a.disabled}).length||j.values()(h[0]).map(function(a){a.disabled=!1,s.selectAll(".nv-series").classed("disabled",!1);return a}),f.transition().call(n)}),j.dispatch.on("elementMouseover.tooltip",function(a){a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],l.tooltipShow(a)}),g&&l.on("tooltipShow",function(a){m(a)}),j.dispatch.on("elementMouseout.tooltip",function(a){l.tooltipHide(a)}),g&&l.on("tooltipHide",a.tooltip.cleanup),n.update=function(){f.transition().call(n)},n.container=this});return n}var b={top:30,right:20,bottom:20,left:20},c=null,d=null,e=!0,f=a.utils.defaultColor(),g=!0,h=function(a,b,c,d){return"

"+ +a+"

"+"

"+b+"

"},i="No Data Available.",j=a.models.pie(),k=a.models.legend().height(30),l=d3.dispatch("tooltipShow","tooltipHide"),m=function(b,c){var d=b.pos[0]+(c&&c.offsetLeft||0),e=b.pos[1]+(c&&c.offsetTop||0),f=j.valueFormat()(j.y()(b.point)),g=h(j.x()(b.point),f,b,n);a.tooltip.show([d,e],g,b.value<0?"n":"s",null,c)};n.dispatch=l,n.pie=j,d3.rebind(n,j,"valueFormat","values","x","y","id","showLabels","donutLabelsOutside","donut","labelThreshold"),n.margin=function(a){if(!arguments.length)return b;b=a;return n},n.width=function(a){if(!arguments.length)return c;c=a;return n},n.height=function(a){if(!arguments.length)return d;d=a;return n},n.color=function(b){if(!arguments.length)return f;f=a.utils.getColor(b),k.color(f),j.color(f);return n},n.showLegend=function(a){if(!arguments.length)return e;e=a;return n},n.tooltips=function(a){if(!arguments.length)return g;g=a;return n},n.tooltipContent=function(a){if(!arguments.length)return h;h=a;return n},n.noData=function(a){if(!arguments.length)return i;i=a;return n};return n},a.models.scatter=function(){function G(a){a.each(function(a){function P(){if(!q)return!1;var c,d=d3.merge(a.map(function(a,b){return a.values.filter(r).map(function(a,c){return[g(j(a,c))*(Math.random()/1e12+1),h(k(a,c))*(Math.random()/1e12+1),b,c]})}));if(t){M.append("clipPath").attr("id","nv-points-clip-"+f);var e=K.select("#nv-points-clip-"+f).selectAll("circle").data(d);e.enter().append("circle").attr("r",u),e.exit().remove(),e.attr("cx",function(a){return a[0]}).attr("cy",function(a){return a[1]}),K.select(".nv-point-paths").attr("clip-path","url(#nv-points-clip-"+f+")")}if(B===!0){var i=d3.geom.voronoi(d).map(function(a,b){return{data:a,series:d[b][2],point:d[b][3]}}),l=K.select(".nv-point-paths").selectAll("path").data(i);l.enter().append("path").attr("class",function(a,b){return"nv-path-"+b}),l.exit().remove(),l.attr("d",function(a){return"M"+a.data.join(",")+"Z"}),c=l}else{var m=d.map(function(a,b){return{data:a,series:d[b][2],point:d[b][3]}});c=K.select(".nv-groups").selectAll(".nv-group").selectAll("path.nv-point").data(m).style("pointer-events","auto")}c.on("click",function(c){var d=a[c.series],e=d.values[c.point];A.elementClick({point:e,series:d,pos:[g(j(e,c.point))+b.left,h(k(e,c.point))+b.top],seriesIndex:c.series,pointIndex:c.point})}).on("mouseover",function(c){var d=a[c.series],e=d.values[c.point];A.elementMouseover({point:e,series:d,pos:[g(j(e,c.point))+b.left,h(k(e,c.point))+b.top],seriesIndex:c.series,pointIndex:c.point})}).on("mouseout",function(b,c){var d=a[b.series],e=d.values[b.point];A.elementMouseout({point:e,series:d,seriesIndex:b.series,pointIndex:b.point})})}var G=c-b.left-b.right,H=d-b.top-b.bottom,I=d3.select(this);a=a.map(function(a,b){a.values=a.values.map(function(a){a.series=b;return a});return a});var J=v&&w&&x?[]:d3.merge(a.map(function(a){return a.values.map(function(a,b){return{x:j(a,b),y:k(a,b),size:l(a,b)}})}));g.domain(v||d3.extent(J.map(function(a){return a.x}).concat(n))).range([0,G]),h.domain(w||d3.extent(J.map(function(a){return a.y}).concat(o))).range([H,0]),i.domain(x||d3.extent(J.map(function(a){return a.size}).concat(p))).range(y||[16,256]);if(g.domain()[0]===g.domain()[1]||h.domain()[0]===h.domain()[1])z=!0;g.domain()[0]===g.domain()[1]&&(g.domain()[0]?g.domain([g.domain()[0]-g.domain()[0]*.01,g.domain()[1]+g.domain()[1]*.01]):g.domain([-1,1])),h.domain()[0]===h.domain()[1]&&(h.domain()[0]?h.domain([h.domain()[0]+h.domain()[0]*.01,h.domain()[1]-h.domain()[1]*.01]):h.domain([-1,1])),C=C||g,D=D||h,E=E||i;var K=I.selectAll("g.nv-wrap.nv-scatter").data([a]),L=K.enter().append("g").attr("class","nvd3 nv-wrap nv-scatter nv-chart-"+f+(z?" nv-single-point":"")),M=L.append("defs"),N=L.append("g"),O=K.select("g");N.append("g").attr("class","nv-groups"),N.append("g").attr("class","nv-point-paths"),K.attr("transform","translate("+b.left+","+b.top+")"),M.append("clipPath").attr("id","nv-edge-clip-"+f).append("rect"),K.select("#nv-edge-clip-"+f+" rect").attr("width",G).attr("height",H),O.attr("clip-path",s?"url(#nv-edge-clip-"+f+")":"");var Q=K.select(".nv-groups").selectAll(".nv-group").data(function(a){return a},function(a){return a.key});Q.enter().append("g").style("stroke-opacity",1e-6).style("fill-opacity",1e-6),d3.transition(Q.exit()).style("stroke-opacity",1e-6).style("fill-opacity",1e-6).remove(),Q.attr("class",function(a,b){return"nv-group nv-series-"+b}).classed("hover",function(a){return a.hover}),d3.transition(Q).style("fill",function(a,b){return e(a,b)}).style("stroke",function(a,b){return e(a,b)}).style("stroke-opacity",1).style("fill-opacity",.5);var R=Q.selectAll("path.nv-point").data(function(a){return a.values});R.enter().append("path").attr("transform",function(a,b){return"translate("+C(j(a,b))+","+D(k(a,b))+")"}).attr("d",d3.svg.symbol().type(m).size(function(a,b){return i(l(a,b))})),R.exit().remove(),d3.transition(Q.exit().selectAll("path.nv-point")).attr("transform",function(a,b){return"translate("+g(j(a,b))+","+h(k(a,b))+")"}).remove(),R.attr("class",function(a,b){return"nv-point nv-point-"+b}),d3.transition(R).attr("transform",function(a,b){return"translate("+g(j(a,b))+","+h(k(a,b))+")"}).attr("d",d3.svg.symbol().type(m).size(function(a,b){return i(l(a,b))})),clearTimeout(F),F=setTimeout(P,1e3),C=g.copy(),D=h.copy(),E=i.copy()});return G}var b={top:0,right:0,bottom:0,left:0},c=960,d=500,e=a.utils.defaultColor(),f=Math.floor(Math.random()*1e5),g=d3.scale.linear(),h=d3.scale.linear(),i=d3.scale.linear(),j=function(a){return a.x},k=function(a){return a.y},l=function(a){return a.size},m=function(a){return a.shape||"circle"},n=[],o=[],p=[],q=!0,r=function(a){return!a.notActive},s=!1,t=!0,u=function(){return 25},v=null,w=null,x=null,y=null,z=!1,A=d3.dispatch("elementClick","elementMouseover","elementMouseout"),B=!0,C,D,E,F;A.on("elementMouseover.point",function(a){q&&d3.select(".nv-chart-"+f+" .nv-series-"+a.seriesIndex+" .nv-point-"+a.pointIndex).classed("hover",!0)}),A.on("elementMouseout.point",function(a){q&&d3.select(".nv-chart-"+f+" .nv-series-"+a.seriesIndex+" .nv-point-"+a.pointIndex).classed("hover",!1)}),G.dispatch=A,G.x=function(a){if(!arguments.length)return j;j=d3.functor(a);return G},G.y=function(a){if(!arguments.length)return k;k=d3.functor(a);return G},G.size=function(a){if(!arguments.length)return l;l=d3.functor(a);return G},G.margin=function(a){if(!arguments.length)return b;b.top=typeof a.top!="undefined"?a.top:b.top,b.right=typeof a.right!="undefined"?a.right:b.right,b.bottom=typeof a.bottom!="undefined"?a.bottom:b.bottom,b.left=typeof a.left!="undefined"?a.left:b.left;return G},G.width=function(a){if(!arguments.length)return c;c=a;return G},G.height=function(a){if(!arguments.length)return d;d=a;return G},G.xScale=function(a){if(!arguments.length)return g;g=a;return G},G.yScale=function(a){if(!arguments.length)return h;h=a;return G},G.zScale=function(a){if(!arguments.length)return i;i=a;return G},G.xDomain=function(a){if(!arguments.length)return v;v=a;return G},G.yDomain=function(a){if(!arguments.length)return w;w=a;return G},G.sizeDomain=function(a){if(!arguments.length)return x;x=a;return G},G.sizeRange=function(a){if(!arguments.length)return y;y=a;return G},G.forceX=function(a){if(!arguments.length)return n;n=a;return G},G.forceY=function(a){if(!arguments.length)return o;o=a;return G},G.forceSize=function(a){if(!arguments.length)return p;p=a;return G},G.interactive=function(a){if(!arguments.length)return q;q=a;return G},G.pointActive=function(a){if(!arguments.length)return r;r=a;return G},G.clipEdge=function(a){if(!arguments.length)return s;s=a;return G},G.clipVoronoi=function(a){if(!arguments.length)return t;t=a;return G},G.useVoronoi=function(a){if(!arguments.length)return B;B=a,B===!1&&(t=!1);return G},G.clipRadius=function(a){if(!arguments.length)return u;u=a;return G},G.color=function(b){if(!arguments.length)return e;e=a.utils.getColor(b);return G},G.shape=function(a){if(!arguments.length)return m;m=a;return G},G.id=function(a){if(!arguments.length)return f;f=a;return G},G.singlePoint=function(a){if(!arguments.length)return z;z=a;return G};return G},a.models.scatterChart=function(){function E(a){a.each(function(v){function L(){if(t){K.select(".nv-point-paths").style("pointer-events","all");return!1}K.select(".nv-point-paths").style("pointer-events","none");var a=d3.mouse(this);m.distortion(s).focus(a[0]),n.distortion(s).focus(a[1]),K.select(".nv-scatterWrap").datum(v.filter(function(a){return!a.disabled})).call(b),K.select(".nv-x.nv-axis").call(c),K.select(".nv-y.nv-axis").call(d),K.select(".nv-distributionX").datum(v.filter(function(a){return!a.disabled})).call(g),K.select(".nv-distributionY").datum(v.filter(function(a){return!a.disabled})).call(h)}var w=d3.select(this),x=this,F=(j||parseInt(w.style("width"))||960)-i.left-i.right,G=(k||parseInt(w.style("height"))||400)-i.top-i.bottom;if(!v||!v.length||!v.filter(function(a){return a.values.length}).length){w.append("text").attr("class","nvd3 nv-noData").attr("x",F/2).attr("y",G/2).attr("dy","-.7em").style("text-anchor","middle").text(z);return E}w.select(".nv-noData").remove(),m=b.xScale(),n=b.yScale(),A=A||m,B=B||n;var H=w.selectAll("g.nv-wrap.nv-scatterChart").data([v]),I=H.enter().append("g").attr("class","nvd3 nv-wrap nv-scatterChart nv-chart-"+b.id()),J=I.append("g"),K=H.select("g");J.append("rect").attr("class","nvd3 nv-background"),J.append("g").attr("class","nv-x nv-axis"),J.append("g").attr("class","nv-y nv-axis"),J.append("g").attr("class","nv-scatterWrap"),J.append("g").attr("class","nv-distWrap"),J.append("g").attr("class","nv-legendWrap"),J.append("g").attr("class","nv-controlsWrap"),H.attr("transform","translate("+i.left+","+i.top+")"),q&&(e.width(F/2),H.select(".nv-legendWrap").datum(v).call(e),i.top!=e.height()&&(i.top=e.height(),G=(k||parseInt(w.style("height"))||400)-i.top-i.bottom),H.select(".nv-legendWrap").attr("transform","translate("+F/2+","+ -i.top+")")),r&&(f.width(180).color(["#444"]),K.select(".nv-controlsWrap").datum(D).attr("transform","translate(0,"+ -i.top+")").call(f)),b.width(F).height(G).color(v.map(function(a,b){return a.color||l(a,b)}).filter(function(a,b){return!v[b].disabled})),H.select(".nv-scatterWrap").datum(v.filter(function(a){return!a.disabled})).call(b),c.scale(m).ticks(c.ticks()?c.ticks():F/100).tickSize(-G,0),K.select(".nv-x.nv-axis").attr("transform","translate(0,"+n.range()[0]+")").call(c),d.scale(n).ticks(d.ticks()?d.ticks():G/36).tickSize(-F,0),K.select(".nv-y.nv-axis").call(d),o&&(g.getData(b.x()).scale(m).width(F).color(v.map(function(a,b){return a.color||l(a,b)}).filter(function(a,b){return!v[b].disabled})),J.select(".nv-distWrap").append("g").attr("class","nv-distributionX").attr("transform","translate(0,"+n.range()[0]+")"),K.select(".nv-distributionX").datum(v.filter(function(a){return!a.disabled})).call(g)),p&&(h.getData(b.y()).scale(n).width(G).color(v.map(function(a,b){return a.color||l(a,b)}).filter(function(a,b){return!v[b].disabled})),J.select(".nv-distWrap").append("g").attr("class","nv-distributionY").attr("transform","translate(-"+h.size()+",0)"),K.select(".nv-distributionY").datum(v.filter(function(a){return!a.disabled})).call(h)),d3.fisheye&&(K.select(".nv-background").attr("width",F).attr("height",G),K.select(".nv-background").on("mousemove",L),K.select(".nv-background").on("click",function(){t=!t}),b.dispatch.on("elementClick.freezeFisheye",function(){t=!t})),f.dispatch.on("legendClick",function(e,f){e.disabled=!e.disabled,s=e.disabled?0:2.5,K.select(".nv-background").style("pointer-events",e.disabled?"none":"all"),K.select(".nv-point-paths").style("pointer-events",e.disabled?"all":"none"),e.disabled?(m.distortion(s).focus(0),n.distortion(s).focus(0),K.select(".nv-scatterWrap").call(b),K.select(".nv-x.nv-axis").call(c),K.select(".nv-y.nv-axis").call(d)):t=!1,E(a)}),e.dispatch.on("legendClick",function(b,c,d){b.disabled=!b.disabled,v.filter(function(a){return!a.disabled}).length||v.map(function(a){a.disabled=!1,H.selectAll(".nv-series").classed("disabled",!1);return a}),E(a)}),b.dispatch.on("elementMouseover.tooltip",function(a){d3.select(".nv-chart-"+b.id()+" .nv-series-"+a.seriesIndex+" .nv-distx-"+a.pointIndex).attr("y1",a.pos[1]-G),d3.select(".nv-chart-"+b.id()+" .nv-series-"+a.seriesIndex+" .nv-disty-"+a.pointIndex).attr("x2",a.pos[0]+g.size()),a.pos=[a.pos[0]+i.left,a.pos[1]+i.top],y.tooltipShow(a)}),y.on("tooltipShow",function(a){u&&C(a,x.parentNode)}),A=m.copy(),B=n.copy(),E.update=function(){E(a)},E.container=this});return E}var b=a.models.scatter(),c=a.models.axis(),d=a.models.axis(),e=a.models.legend(),f=a.models.legend(),g=a.models.distribution(),h=a.models.distribution(),i={top:30,right:20,bottom:50,left:60},j=null,k=null,l=a.utils.defaultColor(),m=d3.fisheye?d3.fisheye.scale(d3.scale.linear).distortion(0):b.xScale(),n=d3.fisheye?d3.fisheye.scale(d3.scale.linear).distortion(0):b.yScale(),o=!1,p=!1,q=!0,r=!!d3.fisheye,s=0,t=!1,u=!0,v=function(a,b,c){return""+b+""},w=function(a,b,c){return""+c+""},x=null,y=d3.dispatch("tooltipShow","tooltipHide"),z="No Data Available.";b.xScale(m).yScale(n),c.orient("bottom").tickPadding(10),d.orient("left").tickPadding(10),g.axis("x"),h.axis("y");var A,B,C=function(e,f){var g=e.pos[0]+(f.offsetLeft||0),h=e.pos[1]+(f.offsetTop||0),j=e.pos[0]+(f.offsetLeft||0),k=n.range()[0]+i.top+(f.offsetTop||0),l=m.range()[0]+i.left+(f.offsetLeft||0),o=e.pos[1]+(f.offsetTop||0),p=c.tickFormat()(b.x()(e.point,e.pointIndex)),q=d.tickFormat()(b.y()(e.point,e.pointIndex));v!=null&&a.tooltip.show([j,k],v(e.series.key,p,q,e,E),"n",1,f,"x-nvtooltip"),w!=null&&a.tooltip.show([l,o],w(e.series.key,p,q,e,E),"e",1,f,"y-nvtooltip"),x!=null&&a.tooltip.show([g,h],x(e.series.key,p,q,e,E),e.value<0?"n":"s",null,f)},D=[{key:"Magnify",disabled:!0}];b.dispatch.on("elementMouseout.tooltip",function(a){y.tooltipHide(a),d3.select(".nv-chart-"+b.id()+" .nv-series-"+a.seriesIndex+" .nv-distx-"+a.pointIndex).attr("y1",0),d3.select(".nv-chart-"+b.id()+" .nv-series-"+a.seriesIndex+" .nv-disty-"+a.pointIndex).attr("x2",h.size())}),y.on("tooltipHide",function(){u&&a.tooltip.cleanup()}),E.dispatch=y,E.scatter=b,E.legend=e,E.controls=f,E.xAxis=c,E.yAxis=d,E.distX=g,E.distY=h,d3.rebind(E,b,"id","interactive","pointActive","x","y","shape","size","xScale","yScale","zScale","xDomain","yDomain","sizeDomain","sizeRange","forceX","forceY","forceSize","clipVoronoi","clipRadius","useVoronoi"),E.margin=function(a){if(!arguments.length)return i;i=a;return E},E.width=function(a){if(!arguments.length)return j;j=a;return E},E.height=function(a){if(!arguments.length)return k;k=a;return E},E.color=function(b){if(!arguments.length)return l;l=a.utils.getColor(b),e.color(l),g.color(l),h.color(l);return E},E.showDistX=function(a){if(!arguments.length)return o;o=a;return E},E.showDistY=function(a){if(!arguments.length)return p;p=a;return E},E.showControls=function(a){if(!arguments.length)return r;r=a;return E},E.showLegend=function(a){if(!arguments.length)return q;q=a;return E},E.fisheye=function(a){if(!arguments.length)return s;s=a;return E},E.tooltips=function(a){if(!arguments.length)return u;u=a;return E},E.tooltipContent=function(a){if(!arguments.length)return x;x=a;return E},E.tooltipXContent=function(a){if(!arguments.length)return v;v=a;return E},E.tooltipYContent=function(a){if(!arguments.length)return w;w=a;return E},E.noData=function(a){if(!arguments.length)return z;z=a;return E};return E},a.models.sparkline=function(){function m(a){a.each(function(a){var e=c-b.left-b.right,m=d-b.top-b.bottom,n=d3.select(this);f.domain(k||d3.extent(a,h)).range([0,e]),g.domain(l||d3.extent(a,i)).range([m,0]);var o=n.selectAll("g.nv-wrap.nv-sparkline").data([a]),p=o.enter().append("g").attr("class","nvd3 nv-wrap nv-sparkline"),q=p.append("g"),r=o.select("g");o.attr("transform","translate("+b.left+","+b.top+")");var s=o.selectAll("path").data(function(a){return[a]});s.enter().append("path"),s.exit().remove(),s.style("stroke",function(a,b){return a.color||j(a,b)}).attr("d",d3.svg.line().x(function(a,b){return f(h(a,b))}).y(function(a,b){return g(i(a,b))}));var t=o.selectAll("circle.nv-point").data(function(a){return a.filter(function(a,b){return g.domain().indexOf(i(a,b))!=-1||h(a,b)==f.domain()[1]})});t.enter().append("circle").attr("class","nv-point"),t.exit().remove(),t.attr("cx",function(a,b){return f(h(a,b))}).attr("cy",function(a,b){return g(i(a,b))}).attr("r",2).style("stroke",function(a,b){return a.x==f.domain()[1]?"#444":a.y==g.domain()[0]?"#d62728":"#2ca02c"}).style("fill",function(a,b){return a.x==f.domain()[1]?"#444":a.y==g.domain()[0]?"#d62728":"#2ca02c"})});return m}var b={top:2,right:0,bottom:2,left:0},c=400,d=32,e=!0,f=d3.scale.linear(),g=d3.scale.linear(),h=function(a){return a.x},i=function(a){return a.y},j=a.utils.getColor(["#000"]),k,l;m.margin=function(a){if(!arguments.length)return b;b=a;return m},m.width=function(a){if(!arguments.length)return c;c=a;return m},m.height=function(a){if(!arguments.length)return d;d=a;return m},m.x=function(a){if(!arguments.length)return h;h=d3.functor(a);return m},m.y=function(a){if(!arguments.length)return i;i=d3.functor(a);return m},m.xDomain=function(a){if(!arguments.length)return k;k=a;return m},m.yDomain=function(a){if(!arguments.length)return l;l=a;return m},m.animate=function(a){if(!arguments.length)return e;e=a;return m},m.color=function(b){if(!arguments.length)return j;j=a.utils.getColor(b);return m};return m},a.models.sparklinePlus=function(){function p(a){a.each(function(a){function A(){var c=d3.event.offsetX-b.left;v.attr("x1",c).attr("x2",c),w.attr("transform",function(a){return"translate("+(c-6)+","+ -b.top+")"}).text(j(Math.round(m.invert(c))));var d=function(a,b){var c=Math.abs(f(a[0])-b),d=0;for(var e=0;e"+a+""+"

"+c+" on "+b+"

"},j,k,l="No Data Available.",m=a.models.stackedArea(),n=a.models.axis().orient("bottom").tickPadding(5),o=a.models.axis().orient("left"),p=d3.format(",.2f"),q=a.models.legend().height(30),r=a.models.legend().height(30),s=d3.dispatch("tooltipShow","tooltipHide"),t=[{key:"Stacked"},{key:"Stream",disabled:!0},{key:"Expanded",disabled:!0}],u=function(b,c){var d=b.pos[0]+(c.offsetLeft||0),e=b.pos[1]+(c.offsetTop||0),f=n.tickFormat()(m.x()(b.point,b.pointIndex)),g=o.tickFormat()(m.y()(b.point,b.pointIndex)),h=i(b.series.key,f,g,b,v);a.tooltip.show([d,e],h,b.value<0?"n":"s",null,c)};m.dispatch.on("tooltipShow",function(a){if(!Math.round(m.y()(a.point)*100)){setTimeout(function(){d3.selectAll(".point.hover").classed("hover",!1)},0);return!1}a.pos=[a.pos[0]+b.left,a.pos[1]+b.top],s.tooltipShow(a)}),m.dispatch.on("tooltipHide",function(a){s.tooltipHide(a)}),s.on("tooltipHide",function(){h&&a.tooltip.cleanup()}),v.dispatch=s,v.stacked=m,v.xAxis=n,v.yAxis=o,d3.rebind(v,m,"x","y","size","xScale","yScale","xDomain","yDomain","sizeDomain","interactive","offset","order","style","clipEdge","forceX","forceY","forceSize"),v.margin=function(a){if(!arguments.length)return b;b=a;return v},v.width=function(a){if(!arguments.length)return getWidth;c=a;return v},v.height=function(a){if(!arguments.length)return getHeight;d=a;return v},v.color=function(b){if(!arguments.length)return e;e=a.utils.getColor(b),q.color(e),m.color(e);return v},v.showControls=function(a){if(!arguments.length)return f;f=a;return v},v.showLegend=function(a){if(!arguments.length)return g;g=a;return v},v.tooltips=function(a){if(!arguments.length)return h;h=a;return v},v.tooltipContent=function(a){if(!arguments.length)return i;i=a;return v},v.noData=function(a){if(!arguments.length)return l;l=a;return v},o.setTickFormat=o.tickFormat,o.tickFormat=function(a){if(!arguments.length)return p;p=a;return o};return v}})() \ No newline at end of file diff --git a/src/models/indentedTree.js b/src/models/indentedTree.js index ea2d412..bfe2a46 100644 --- a/src/models/indentedTree.js +++ b/src/models/indentedTree.js @@ -1,32 +1,30 @@ -//TODO: Finish merging this chart into the NVD3 style! nv.models.indentedTree = function() { - //Default Settings - var margin = {top: 0, right: 0, bottom: 0, left: 0}, //TODO: implement, maybe as margin on the containing div - width = 960, - height = 500, - color = nv.utils.defaultColor(), - id = Math.floor(Math.random() * 10000), - header = true, - noResultsText = 'No Results found.' - childIndent = 20, - columns = [{key:'key', label: 'Name', type:'text'}], //TODO: consider functions like chart.addColumn, chart.removeColumn, instead of a block like this - tableClass = null, - iconOpen = 'images/grey-plus.png', //TODO: consider removing this and replacing with a '+' or '-' unless user defines images - iconClose = 'images/grey-minus.png'; + //============================================================ + // Public Variables with Default Settings + //------------------------------------------------------------ - var dispatch = d3.dispatch('elementClick', 'elementDblclick', 'elementMouseover', 'elementMouseout'); + var margin = {top: 0, right: 0, bottom: 0, left: 0} //TODO: implement, maybe as margin on the containing div + , width = 960 + , height = 500 + , color = nv.utils.defaultColor() + , id = Math.floor(Math.random() * 10000) + , header = true + , noData = "No Data Available." + , childIndent = 20 + , columns = [{key:'key', label: 'Name', type:'text'}] //TODO: consider functions like chart.addColumn, chart.removeColumn, instead of a block like this + , tableClass = null + , iconOpen = 'images/grey-plus.png' //TODO: consider removing this and replacing with a '+' or '-' unless user defines images + , iconClose = 'images/grey-minus.png' + , dispatch = d3.dispatch('elementClick', 'elementDblclick', 'elementMouseover', 'elementMouseout') + ; + + //============================================================ function chart(selection) { selection.each(function(data) { - var availableWidth = width - margin.left - margin.right, //TODO: decide if there is any use for these - availableHeight = height - margin.top - margin.bottom; - - - chart.update = function() { selection.transition().call(chart) }; - var i = 0, depth = 1; @@ -35,16 +33,26 @@ nv.models.indentedTree = function() { .size([height, childIndent]); //Not sure if this is needed now that the result is HTML - if (!data[0].key) data[0].key = noResultsText; + //------------------------------------------------------------ + // Display No Data message if there's nothing to show. + + if (!data[0].key) data[0].key = noData; + + //------------------------------------------------------------ + var nodes = tree.nodes(data[0]); + //------------------------------------------------------------ + // Setup containers and skeleton of chart + var wrap = d3.select(this).selectAll('div').data([[nodes]]); var wrapEnter = wrap.enter().append('div').attr('class', 'nvd3 nv-wrap nv-indentedtree'); var tableEnter = wrapEnter.append('table'); var table = wrap.select('table').attr('width', '100%').attr('class', tableClass); + //------------------------------------------------------------ if (header) { @@ -134,7 +142,7 @@ nv.models.indentedTree = function() { .order() .on('click', function(d) { dispatch.elementClick({ - row: this, //TODO: decide whether or not this should be consistent with scatter/line events + row: this, //TODO: decide whether or not this should be consistent with scatter/line events or should be an html link (a href) data: d, pos: [d.x, d.y] }); @@ -208,13 +216,19 @@ nv.models.indentedTree = function() { return (values && values.length); } + + chart.update = function() { selection.transition().call(chart) }; + chart.container = this; + }); return chart; } - + //============================================================ + // Expose Public Variables + //------------------------------------------------------------ chart.margin = function(_) { if (!arguments.length) return margin; @@ -253,9 +267,9 @@ nv.models.indentedTree = function() { return chart; }; - chart.noResultsText = function(_) { - if (!arguments.length) return noResultsText; - noResultsText = _; + chart.noData = function(_) { + if (!arguments.length) return noData; + noData = _; return chart; }; @@ -283,5 +297,8 @@ nv.models.indentedTree = function() { return chart; } + //============================================================ + + return chart; }