/* jquery.sparkline 2.1.3 - omnipotent.net/jquery.sparkline/ ** Licensed under the New BSD License - see above site for details */
(function(document,Math,undefined){(function(factory){if(typeof define===“function”&&define.amd){define(,factory)}else if(jQuery&&!jQuery.fn.sparkline){factory(jQuery)}})(function($){“use strict”;var UNSET_OPTION={},getDefaults,createClass,SPFormat,clipval,quartile,normalizeValue,normalizeValues,remove,isNumber,all,sum,addCSS,ensureArray,formatNumber,RangeMap,MouseHandler,Tooltip,barHighlightMixin,line,bar,tristate,discrete,bullet,pie,box,defaultStyles,initStyles,VShape,VCanvas_base,VCanvas_canvas,VCanvas_vml,pending,shapeCount=0;getDefaults=function(){return{common:{type:“line”,lineColor:“#00f”,fillColor:“#cdf”,defaultPixelsPerValue:3,width:“auto”,height:“auto”,composite:false,tagValuesAttribute:“values”,tagOptionsPrefix:“spark”,enableTagOptions:false,enableHighlight:true,highlightLighten:1.4,tooltipSkipNull:true,tooltipPrefix:“”,tooltipSuffix:“”,disableHiddenCheck:false,numberFormatter:false,numberDigitGroupCount:3,numberDigitGroupSep:“,”,numberDecimalMark:“.”,disableTooltips:false,disableInteraction:false},line:{spotColor:“#f80”,highlightSpotColor:“#5f5”,highlightLineColor:“#f22”,spotRadius:1.5,minSpotColor:“#f80”,maxSpotColor:“#f80”,lineWidth:1,normalRangeMin:undefined,normalRangeMax:undefined,normalRangeColor:“#ccc”,drawNormalOnTop:false,chartRangeMin:undefined,chartRangeMax:undefined,chartRangeMinX:undefined,chartRangeMaxX:undefined,tooltipFormat:new SPFormat('<span style=“color: {{color}}”>●</span> {{prefix}}{{y}}{{suffix}}')},bar:{barColor:“#3366cc”,negBarColor:“#f44”,stackedBarColor:,zeroColor:undefined,nullColor:undefined,zeroAxis:true,barWidth:4,barSpacing:1,chartRangeMax:undefined,chartRangeMin:undefined,chartRangeClip:false,colorMap:undefined,tooltipFormat:new SPFormat('<span style=“color: {{color}}”>●</span> {{prefix}}{{value}}{{suffix}}')},tristate:{barWidth:4,barSpacing:1,posBarColor:“#6f6”,negBarColor:“#f44”,zeroBarColor:“#999”,colorMap:{},tooltipFormat:new SPFormat('<span style=“color: {{color}}”>●</span> {{value:map}}'),tooltipValueLookups:{map:{“-1”:“Loss”,0:“Draw”,1:“Win”}}},discrete:{lineHeight:“auto”,thresholdColor:undefined,thresholdValue:0,chartRangeMax:undefined,chartRangeMin:undefined,chartRangeClip:false,tooltipFormat:new SPFormat(“{{prefix}}{{value}}{{suffix}}”)},bullet:{targetColor:“#f33”,targetWidth:3,performanceColor:“#33f”,rangeColors:,base:undefined,tooltipFormat:new SPFormat(“{{fieldkey:fields}} - {{value}}”),tooltipValueLookups:{fields:{r:“Range”,p:“Performance”,t:“Target”}}},pie:{offset:0,sliceColors:,borderWidth:0,borderColor:“#000”,tooltipFormat:new SPFormat('<span style=“color: {{color}}”>●</span> {{value}} ({{percent.1}}%)')},box:{raw:false,boxLineColor:“#000”,boxFillColor:“#cdf”,whiskerColor:“#000”,outlierLineColor:“#333”,outlierFillColor:“#fff”,medianColor:“#f00”,showOutliers:true,outlierIQR:1.5,spotRadius:1.5,target:undefined,targetColor:“#4a2”,chartRangeMax:undefined,chartRangeMin:undefined,tooltipFormat:new SPFormat(“{{field:fields}}: {{value}}”),tooltipFormatFieldlistKey:“field”,tooltipValueLookups:{fields:{lq:“Lower Quartile”,med:“Median”,uq:“Upper Quartile”,lo:“Left Outlier”,ro:“Right Outlier”,lw:“Left Whisker”,rw:“Right Whisker”}}}}};defaultStyles=“.jqstooltip { ”+“position: absolute;”+“left: 0px;”+“top: 0px;”+“visibility: hidden;”+“background: rgb(0, 0, 0) transparent;”+“background-color: rgba(0,0,0,0.6);”+“filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);”+'-ms-filter: “progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)”;'+“color: white;”+“font: 10px arial, san serif;”+“text-align: left;”+“white-space: nowrap;”+“padding: 5px;”+“border: 1px solid white;”+“box-sizing: content-box;”+“z-index: 10000;”+“}”+“.jqsfield { ”+“color: white;”+“font: 10px arial, san serif;”+“text-align: left;”+“}”;createClass=function(){var Class,args;Class=function(){this.init.apply(this,arguments)};if(arguments.length>1){if(arguments){Class.prototype=$.extend(new arguments,arguments);Class._super=arguments.prototype}else{Class.prototype=arguments}if(arguments.length>2){args=Array.prototype.slice.call(arguments,1,-1);args.unshift(Class.prototype);$.extend.apply($,args)}}else{Class.prototype=arguments}Class.prototype.cls=Class;return Class};$.SPFormatClass=SPFormat=createClass({fre:/{{([w.]+?)(:(.+?))?}}/g,precre:/(w+).(d+)/,init:function(format,fclass){this.format=format;this.fclass=fclass},render:function(fieldset,lookups,options){var self=this,fields=fieldset,match,token,lookupkey,fieldvalue,prec;return this.format.replace(this.fre,function(){var lookup;token=arguments;lookupkey=arguments;match=self.precre.exec(token);if(match){prec=match;token=match}else{prec=false}fieldvalue=fields;if(fieldvalue===undefined){return“”}if(lookupkey&&lookups&&lookups){lookup=lookups;if(lookup.get){return lookups.get(fieldvalue)||fieldvalue}else{return lookups[fieldvalue]||fieldvalue}}if(isNumber(fieldvalue)){if(options.get(“numberFormatter”)){fieldvalue=options.get(“numberFormatter”)(fieldvalue)}else{fieldvalue=formatNumber(fieldvalue,prec,options.get(“numberDigitGroupCount”),options.get(“numberDigitGroupSep”),options.get(“numberDecimalMark”))}}return fieldvalue})}});$.spformat=function(format,fclass){return new SPFormat(format,fclass)};clipval=function(val,min,max){if(val<min){return min}if(val>max){return max}return val};quartile=function(values,q){var vl;if(q===2){vl=Math.floor(values.length/2);return values.length%2?values:(values+values)/2}else{if(values.length%2){vl=(values.length*q+q)/4;return vl%1?(values+values)/2:values}else{vl=(values.length*q+2)/4;return vl%1?(values+values)/2:values}}};normalizeValue=function(val){var nf;switch(val){case“undefined”:val=undefined;break;case“null”:val=null;break;case“true”:val=true;break;case“false”:val=false;break;default:nf=parseFloat(val);if(val==nf){val=nf}}return val};normalizeValues=function(vals){var i,result=[];for(i=vals.length;i–;){result=normalizeValue(vals)}return result};remove=function(vals,filter){var i,vl,result=[];for(i=0,vl=vals.length;ifclass
'”>'text
“</div>”)}}}if(entries.length){return header+entries.join(“n”)}return“”},getCurrentRegionFields:function(){},calcHighlightColor:function(color,options){var highlightColor=options.get(“highlightColor”),lighten=options.get(“highlightLighten”),parse,mult,rgbnew,i;if(highlightColor){return highlightColor}if(lighten){parse=/^#()([0-9a-f])()$/i.exec(color)||/^#({2})([0-9a-f]{2})([0-9a-f]{2})$/i.exec(color);if(parse){rgbnew=[];mult=color.length===4?16:1;for(i=0;i<3;i++){rgbnew=clipval(Math.round(parseInt(parse,16)*mult*lighten),0,255)}return“rgb(”+rgbnew.join(“,”)+“)”}}return color}});barHighlightMixin={changeHighlight:function(highlight){var currentRegion=this.currentRegion,target=this.target,shapeids=this.regionShapes,newShapes;if(shapeids){newShapes=this.renderRegion(currentRegion,highlight);if($.isArray(newShapes)||$.isArray(shapeids)){target.replaceWithShapes(shapeids,newShapes);this.regionShapes=$.map(newShapes,function(newShape){return newShape.id})}else{target.replaceWithShape(shapeids,newShapes);this.regionShapes=newShapes.id}}},render:function(){var values=this.values,target=this.target,regionShapes=this.regionShapes,shapes,ids,i,j;if(!this.cls._super.render.call(this)){return}for(i=values.length;i–;){shapes=this.renderRegion(i);if(shapes){if($.isArray(shapes)){ids=[];for(j=shapes.length;j–;){shapes.append();ids.push(shapes.id)}regionShapes=ids}else{shapes.append();regionShapes=shapes.id}}else{regionShapes=null}}target.render()}};$.fn.sparkline.line=line=createClass($.fn.sparkline._base,{type:“line”,init:function(el,values,options,width,height){line._super.init.call(this,el,values,options,width,height);this.vertices=[];this.regionMap=;this.xvalues=[];this.yvalues=;this.yminmax=[];this.hightlightSpotId=null;this.lastShapeId=null;this.initTarget()},getRegion:function(el,x,y){var i,regionMap=this.regionMap;for(i=regionMap.length;i–;){if(regionMap!==null&&x>=regionMap[0]&&x<=regionMap[1]){return regionMap[2]}}return undefined},getCurrentRegionFields:function(){var currentRegion=this.currentRegion;return{isNull:this.yvalues===null,x:this.xvalues,y:this.yvalues,color:this.options.get(“lineColor”),fillColor:this.options.get(“fillColor”),offset:currentRegion}},renderHighlight:function(){var currentRegion=this.currentRegion,target=this.target,vertex=this.vertices,options=this.options,spotRadius=options.get(“spotRadius”),highlightSpotColor=options.get(“highlightSpotColor”),highlightLineColor=options.get(“highlightLineColor”),highlightSpot,highlightLine;if(!vertex){return}if(spotRadius&&highlightSpotColor){highlightSpot=target.drawCircle(vertex,vertex,spotRadius,undefined,highlightSpotColor);this.highlightSpotId=highlightSpot.id;target.insertAfterShape(this.lastShapeId,highlightSpot)}if(highlightLineColor){highlightLine=target.drawLine(vertex,this.canvasTop,vertex,this.canvasTop+this.canvasHeight,highlightLineColor);this.highlightLineId=highlightLine.id;target.insertAfterShape(this.lastShapeId,highlightLine)}},removeHighlight:function(){var target=this.target;if(this.highlightSpotId){target.removeShapeId(this.highlightSpotId);this.highlightSpotId=null}if(this.highlightLineId){target.removeShapeId(this.highlightLineId);this.highlightLineId=null}},scanValues:function(){var values=this.values,valcount=values.length,xvalues=this.xvalues,yvalues=this.yvalues,yminmax=this.yminmax,i,val,isStr,isArray,sp;for(i=0;i<valcount;i++){val=values;isStr=typeof values===“string”;isArray=typeof values===“object”&&valuesinstanceof Array;sp=isStr&&values.split(“:”);if(isStr&&sp.length===2){xvalues.push(Number(sp));yvalues.push(Number(sp));yminmax.push(Number(sp))}else if(isArray){xvalues.push(val);yvalues.push(val);yminmax.push(val)}else{xvalues.push(i);if(values===null||values===“null”){yvalues.push(null)}else{yvalues.push(Number(val));yminmax.push(Number(val))}}}if(this.options.get(“xvalues”)){xvalues=this.options.get(“xvalues”)}this.maxy=this.maxyorg=Math.max.apply(Math,yminmax);this.miny=this.minyorg=Math.min.apply(Math,yminmax);this.maxx=Math.max.apply(Math,xvalues);this.minx=Math.min.apply(Math,xvalues);this.xvalues=xvalues;this.yvalues=yvalues;this.yminmax=yminmax},processRangeOptions:function(){var options=this.options,normalRangeMin=options.get(“normalRangeMin”),normalRangeMax=options.get(“normalRangeMax”);if(normalRangeMin!==undefined){if(normalRangeMin<this.miny){this.miny=normalRangeMin}if(normalRangeMax>this.maxy){this.maxy=normalRangeMax}}if(options.get(“chartRangeMin”)!==undefined&&(options.get(“chartRangeClip”)||options.get(“chartRangeMin”)<this.miny)){this.miny=options.get(“chartRangeMin”)}if(options.get(“chartRangeMax”)!==undefined&&(options.get(“chartRangeClip”)||options.get(“chartRangeMax”)>this.maxy)){this.maxy=options.get(“chartRangeMax”)}if(options.get(“chartRangeMinX”)!==undefined&&(options.get(“chartRangeClipX”)||options.get(“chartRangeMinX”)<this.minx)){this.minx=options.get(“chartRangeMinX”)}if(options.get(“chartRangeMaxX”)!==undefined&&(options.get(“chartRangeClipX”)||options.get(“chartRangeMaxX”)>this.maxx)){this.maxx=options.get(“chartRangeMaxX”)}},drawNormalRange:function(canvasLeft,canvasTop,canvasHeight,canvasWidth,rangey){var normalRangeMin=this.options.get(“normalRangeMin”),normalRangeMax=this.options.get(“normalRangeMax”),ytop=canvasTop+Math.round(canvasHeight-canvasHeight*((normalRangeMax-this.miny)/rangey)),height=Math.round(canvasHeight*(normalRangeMax-normalRangeMin)/rangey);this.target.drawRect(canvasLeft,ytop,canvasWidth,height,undefined,this.options.get(“normalRangeColor”)).append()},render:function(){var options=this.options,target=this.target,canvasWidth=this.canvasWidth,canvasHeight=this.canvasHeight,vertices=this.vertices,spotRadius=options.get(“spotRadius”),regionMap=this.regionMap,rangex,rangey,yvallast,canvasTop,canvasLeft,vertex,path,paths,x,y,xnext,xpos,xposnext,last,next,yvalcount,lineShapes,fillShapes,plen,valueSpots,hlSpotsEnabled,color,xvalues,yvalues,i;if(!line._super.render.call(this)){return}this.scanValues();this.processRangeOptions();xvalues=this.xvalues;yvalues=this.yvalues;if(!this.yminmax.length||this.yvalues.length<2){return}canvasTop=canvasLeft=0;rangex=this.maxx-this.minx===0?1:this.maxx-this.minx;rangey=this.maxy-this.miny===0?1:this.maxy-this.miny;yvallast=this.yvalues.length-1;if(spotRadius&&(canvasWidth<spotRadius*4||canvasHeight<spotRadius*4)){spotRadius=0}if(spotRadius){hlSpotsEnabled=options.get(“highlightSpotColor”)&&!options.get(“disableInteraction”);if(hlSpotsEnabled||options.get(“minSpotColor”)||options.get(“spotColor”)&&yvalues===this.miny){canvasHeight-=Math.ceil(spotRadius)}if(hlSpotsEnabled||options.get(“maxSpotColor”)||options.get(“spotColor”)&&yvalues===this.maxy){canvasHeight-=Math.ceil(spotRadius);canvasTop+=Math.ceil(spotRadius)}if(hlSpotsEnabled||(options.get(“minSpotColor”)||options.get(“maxSpotColor”))&&(yvalues===this.miny||yvalues===this.maxy)){canvasLeft+=Math.ceil(spotRadius);canvasWidth-=Math.ceil(spotRadius)}if(hlSpotsEnabled||options.get(“spotColor”)||(options.get(“minSpotColor”)||options.get(“maxSpotColor”)&&(yvalues===this.miny||yvalues===this.maxy))){canvasWidth-=Math.ceil(spotRadius)}}canvasHeight–;if(options.get(“normalRangeMin”)!==undefined&&!options.get(“drawNormalOnTop”)){this.drawNormalRange(canvasLeft,canvasTop,canvasHeight,canvasWidth,rangey)}path=[];paths=;last=next=null;yvalcount=yvalues.length;for(i=0;i<yvalcount;i++){x=xvalues;xnext=xvalues;y=yvalues;xpos=canvasLeft+Math.round((x-this.minx)*(canvasWidth/rangex));xposnext=i
}val=remove(val,null);groupMin=Math.min.apply(Math,val);groupMax=Math.max.apply(Math,val);if(groupMin<stackMin){stackMin=groupMin}if(groupMax>stackMax){stackMax=groupMax}}}this.stacked=stacked;this.regionShapes={};this.barWidth=barWidth;this.barSpacing=barSpacing;this.totalBarWidth=barWidth+barSpacing;this.width=width=values.length*barWidth+(values.length-1)*barSpacing;this.initTarget();if(chartRangeClip){clipMin=chartRangeMin===undefined?-Infinity:chartRangeMin;clipMax=chartRangeMax===undefined?Infinity:chartRangeMax}numValues=[];stackRanges=stacked?:numValues;var stackTotals=[];var stackRangesNeg=[];for(i=0,vlen=values.length;ithis.pixelWidth
” “this.pixelHeight
'”'+' style=“position:absolute;top:0;left:0;width:‘this.pixelWidth
”px;height=“this.pixelHeight
’px;”>‘;this.canvas.insertAdjacentHTML(“beforeEnd”,groupel);this.group=$(this.canvas).children();this.rendered=false;this.prerender=“”},_drawShape:function(shapeid,path,lineColor,fillColor,lineWidth){var vpath=[],initial,stroke,fill,closed,vel,plen,i;for(i=0,plen=path.length;ipath[i][0]
“,”+path[1]}initial=vpath.splice(0,1);lineWidth=lineWidth===undefined?1:lineWidth;stroke=lineColor===undefined?' stroked=“false” ':' strokeWeight=“'lineWidth
'px” strokeColor=“'lineColor
'” ';fill=fillColor===undefined?' filled=“false”':' fillColor=“'fillColor
'” filled=“true” ';closed=vpath===vpath?“x ”:“”;vel='<v:shape coordorigin=“0 0” coordsize=“'this.pixelWidth
” “this.pixelHeight
'” '+' id=“jqsshape'shapeid
'” '+stroke+fill+' style=“position:absolute;left:0px;top:0px;height:'this.pixelHeight
”px;width:“this.pixelWidth
'px;padding:0px;margin:0px;” '+' path=“m 'initial
” l “+vpath.join(”, “)+” “closed
'e”>'+“ </v:shape>”;return vel},_drawCircle:function(shapeid,x,y,radius,lineColor,fillColor,lineWidth){var stroke,fill,vel;x-=radius;y-=radius;stroke=lineColor===undefined?' stroked=“false” ':' strokeWeight=“'lineWidth
'px” strokeColor=“'lineColor
'” ';fill=fillColor===undefined?' filled=“false”':' fillColor=“'fillColor
'” filled=“true” ';vel=“<v:oval ”+' id=“jqsshape'shapeid
'” '+stroke+fill+' style=“position:absolute;top:'y
”px; left:“x
”px; width:“+radius*2+”px; height:“+radius*2+'px”></v:oval>';return vel},_drawPieSlice:function(shapeid,x,y,radius,startAngle,endAngle,lineColor,fillColor){var vpath,startx,starty,endx,endy,stroke,fill,vel;if(startAngle===endAngle){return“”}if(endAngle-startAngle===2*Math.PI){startAngle=0;endAngle=2*Math.PI}startx=x+Math.round(Math.cos(startAngle)*radius);starty=y+Math.round(Math.sin(startAngle)*radius);endx=x+Math.round(Math.cos(endAngle)*radius);endy=y+Math.round(Math.sin(endAngle)*radius);if(startx===endx&&starty===endy){if(endAngle-startAngle<Math.PI){return“”}startx=endx=x+radius;starty=endy=y}if(startx===endx&&starty===endy&&endAngle-startAngle<Math.PI){return“”}vpath=;stroke=lineColor===undefined?' stroked=“false” ':' strokeWeight=“1px” strokeColor=“'lineColor
'” ';fill=fillColor===undefined?' filled=“false”':' fillColor=“'fillColor
'” filled=“true” ';vel='<v:shape coordorigin=“0 0” coordsize=“'this.pixelWidth
” “this.pixelHeight
'” '+' id=“jqsshape'shapeid
'” '+stroke+fill+' style=“position:absolute;left:0px;top:0px;height:'this.pixelHeight
”px;width:“this.pixelWidth
'px;padding:0px;margin:0px;” '+' path=“m 'x
”,“y
” wa “+vpath.join(”, “)+' x e”>'+“ </v:shape>”;return vel},_drawRect:function(shapeid,x,y,width,height,lineColor,fillColor){return this._drawShape(shapeid,[,[x,y+height],,[x+width,y],],lineColor,fillColor)},reset:function(){this.group.innerHTML=“”},appendShape:function(shape){var vel=this.apply(this,shape.args);if(this.rendered){this.group.insertAdjacentHTML(“beforeEnd”,vel)}else{this.prerender+=vel}this.lastShapeId=shape.id;return shape.id},replaceWithShape:function(shapeid,shape){var existing=$(“#jqsshape”+shapeid),vel=this.apply(this,shape.args);existing.outerHTML=vel},replaceWithShapes:function(shapeids,shapes){var existing=$(“#jqsshape”+shapeids),replace=“”,slen=shapes.length,i;for(i=0;i<slen;i++){replace+=this[“_draw”+shapes.type].apply(this,shapes.args)}existing.outerHTML=replace;for(i=1;i<shapeids.length;i++){$(“#jqsshape”+shapeids).remove()}},insertAfterShape:function(shapeid,shape){var existing=$(“#jqsshape”+shapeid),vel=this.apply(this,shape.args);existing.insertAdjacentHTML(“afterEnd”,vel)},removeShapeId:function(shapeid){var existing=$(“#jqsshape”+shapeid);this.group.removeChild(existing)},getShapeAt:function(el,x,y){var shapeid=el.id.substr(8);return shapeid},render:function(){if(!this.rendered){this.group.innerHTML=this.prerender;this.rendered=true}}})})})(document,Math);