quoslibero
Version:
FusionCharts JavaScript charting framework
2 lines • 40.6 kB
JavaScript
(function(factory){if(typeof module==="object"&&typeof module.exports!=="undefined"){module.exports=factory}else{factory(FusionCharts)}})(function(FusionCharts){(function(modules){var installedModules={};function __webpack_require__(moduleId){if(installedModules[moduleId]){return installedModules[moduleId].exports}var module=installedModules[moduleId]={i:moduleId,l:false,exports:{}};modules[moduleId].call(module.exports,module,module.exports,__webpack_require__);module.l=true;return module.exports}__webpack_require__.m=modules;__webpack_require__.c=installedModules;__webpack_require__.d=function(exports,name,getter){if(!__webpack_require__.o(exports,name)){Object.defineProperty(exports,name,{configurable:false,enumerable:true,get:getter})}};__webpack_require__.n=function(module){var getter=module&&module.__esModule?function getDefault(){return module["default"]}:function getModuleExports(){return module};__webpack_require__.d(getter,"a",getter);return getter};__webpack_require__.o=function(object,property){return Object.prototype.hasOwnProperty.call(object,property)};__webpack_require__.p="";return __webpack_require__(__webpack_require__.s=17)})([function(module,exports){module.exports=function(useSourceMap){var list=[];list.toString=function toString(){return this.map(function(item){var content=cssWithMappingToString(item,useSourceMap);if(item[2]){return"@media "+item[2]+"{"+content+"}"}else{return content}}).join("")};list.i=function(modules,mediaQuery){if(typeof modules==="string")modules=[[null,modules,""]];var alreadyImportedModules={};for(var i=0;i<this.length;i++){var id=this[i][0];if(typeof id==="number")alreadyImportedModules[id]=true}for(i=0;i<modules.length;i++){var item=modules[i];if(typeof item[0]!=="number"||!alreadyImportedModules[item[0]]){if(mediaQuery&&!item[2]){item[2]=mediaQuery}else if(mediaQuery){item[2]="("+item[2]+") and ("+mediaQuery+")"}list.push(item)}}};return list};function cssWithMappingToString(item,useSourceMap){var content=item[1]||"";var cssMapping=item[3];if(!cssMapping){return content}if(useSourceMap&&typeof btoa==="function"){var sourceMapping=toComment(cssMapping);var sourceURLs=cssMapping.sources.map(function(source){return"/*# sourceURL="+cssMapping.sourceRoot+source+" */"});return[content].concat(sourceURLs).concat([sourceMapping]).join("\n")}return[content].join("\n")}function toComment(sourceMap){var base64=btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));var data="sourceMappingURL=data:application/json;charset=utf-8;base64,"+base64;return"/*# "+data+" */"}},function(module,exports,__webpack_require__){var stylesInDom={};var memoize=function(fn){var memo;return function(){if(typeof memo==="undefined")memo=fn.apply(this,arguments);return memo}};var isOldIE=memoize(function(){return window&&document&&document.all&&!window.atob});var getTarget=function(target){return document.querySelector(target)};var getElement=function(fn){var memo={};return function(target){if(typeof target==="function"){return target()}if(typeof memo[target]==="undefined"){var styleTarget=getTarget.call(this,target);if(window.HTMLIFrameElement&&styleTarget instanceof window.HTMLIFrameElement){try{styleTarget=styleTarget.contentDocument.head}catch(e){styleTarget=null}}memo[target]=styleTarget}return memo[target]}}();var singleton=null;var singletonCounter=0;var stylesInsertedAtTop=[];var fixUrls=__webpack_require__(2);module.exports=function(list,options){if(typeof DEBUG!=="undefined"&&DEBUG){if(typeof document!=="object")throw new Error("The style-loader cannot be used in a non-browser environment")}options=options||{};options.attrs=typeof options.attrs==="object"?options.attrs:{};if(!options.singleton&&typeof options.singleton!=="boolean")options.singleton=isOldIE();if(!options.insertInto)options.insertInto="head";if(!options.insertAt)options.insertAt="bottom";var styles=listToStyles(list,options);addStylesToDom(styles,options);return function update(newList){var mayRemove=[];for(var i=0;i<styles.length;i++){var item=styles[i];var domStyle=stylesInDom[item.id];domStyle.refs--;mayRemove.push(domStyle)}if(newList){var newStyles=listToStyles(newList,options);addStylesToDom(newStyles,options)}for(var i=0;i<mayRemove.length;i++){var domStyle=mayRemove[i];if(domStyle.refs===0){for(var j=0;j<domStyle.parts.length;j++)domStyle.parts[j]();delete stylesInDom[domStyle.id]}}}};function addStylesToDom(styles,options){for(var i=0;i<styles.length;i++){var item=styles[i];var domStyle=stylesInDom[item.id];if(domStyle){domStyle.refs++;for(var j=0;j<domStyle.parts.length;j++){domStyle.parts[j](item.parts[j])}for(;j<item.parts.length;j++){domStyle.parts.push(addStyle(item.parts[j],options))}}else{var parts=[];for(var j=0;j<item.parts.length;j++){parts.push(addStyle(item.parts[j],options))}stylesInDom[item.id]={id:item.id,refs:1,parts:parts}}}}function listToStyles(list,options){var styles=[];var newStyles={};for(var i=0;i<list.length;i++){var item=list[i];var id=options.base?item[0]+options.base:item[0];var css=item[1];var media=item[2];var sourceMap=item[3];var part={css:css,media:media,sourceMap:sourceMap};if(!newStyles[id])styles.push(newStyles[id]={id:id,parts:[part]});else newStyles[id].parts.push(part)}return styles}function insertStyleElement(options,style){var target=getElement(options.insertInto);if(!target){throw new Error("Couldn't find a style target. This probably means that the value for the 'insertInto' parameter is invalid.")}var lastStyleElementInsertedAtTop=stylesInsertedAtTop[stylesInsertedAtTop.length-1];if(options.insertAt==="top"){if(!lastStyleElementInsertedAtTop){target.insertBefore(style,target.firstChild)}else if(lastStyleElementInsertedAtTop.nextSibling){target.insertBefore(style,lastStyleElementInsertedAtTop.nextSibling)}else{target.appendChild(style)}stylesInsertedAtTop.push(style)}else if(options.insertAt==="bottom"){target.appendChild(style)}else if(typeof options.insertAt==="object"&&options.insertAt.before){var nextSibling=getElement(options.insertInto+" "+options.insertAt.before);target.insertBefore(style,nextSibling)}else{throw new Error("[Style Loader]\n\n Invalid value for parameter 'insertAt' ('options.insertAt') found.\n Must be 'top', 'bottom', or Object.\n (https://github.com/webpack-contrib/style-loader#insertat)\n")}}function removeStyleElement(style){if(style.parentNode===null)return false;style.parentNode.removeChild(style);var idx=stylesInsertedAtTop.indexOf(style);if(idx>=0){stylesInsertedAtTop.splice(idx,1)}}function createStyleElement(options){var style=document.createElement("style");if(options.attrs.type===undefined){options.attrs.type="text/css"}addAttrs(style,options.attrs);insertStyleElement(options,style);return style}function createLinkElement(options){var link=document.createElement("link");if(options.attrs.type===undefined){options.attrs.type="text/css"}options.attrs.rel="stylesheet";addAttrs(link,options.attrs);insertStyleElement(options,link);return link}function addAttrs(el,attrs){Object.keys(attrs).forEach(function(key){el.setAttribute(key,attrs[key])})}function addStyle(obj,options){var style,update,remove,result;if(options.transform&&obj.css){result=options.transform(obj.css);if(result){obj.css=result}else{return function(){}}}if(options.singleton){var styleIndex=singletonCounter++;style=singleton||(singleton=createStyleElement(options));update=applyToSingletonTag.bind(null,style,styleIndex,false);remove=applyToSingletonTag.bind(null,style,styleIndex,true)}else if(obj.sourceMap&&typeof URL==="function"&&typeof URL.createObjectURL==="function"&&typeof URL.revokeObjectURL==="function"&&typeof Blob==="function"&&typeof btoa==="function"){style=createLinkElement(options);update=updateLink.bind(null,style,options);remove=function(){removeStyleElement(style);if(style.href)URL.revokeObjectURL(style.href)}}else{style=createStyleElement(options);update=applyToTag.bind(null,style);remove=function(){removeStyleElement(style)}}update(obj);return function updateStyle(newObj){if(newObj){if(newObj.css===obj.css&&newObj.media===obj.media&&newObj.sourceMap===obj.sourceMap){return}update(obj=newObj)}else{remove()}}}var replaceText=function(){var textStore=[];return function(index,replacement){textStore[index]=replacement;return textStore.filter(Boolean).join("\n")}}();function applyToSingletonTag(style,index,remove,obj){var css=remove?"":obj.css;if(style.styleSheet){style.styleSheet.cssText=replaceText(index,css)}else{var cssNode=document.createTextNode(css);var childNodes=style.childNodes;if(childNodes[index])style.removeChild(childNodes[index]);if(childNodes.length){style.insertBefore(cssNode,childNodes[index])}else{style.appendChild(cssNode)}}}function applyToTag(style,obj){var css=obj.css;var media=obj.media;if(media){style.setAttribute("media",media)}if(style.styleSheet){style.styleSheet.cssText=css}else{while(style.firstChild){style.removeChild(style.firstChild)}style.appendChild(document.createTextNode(css))}}function updateLink(link,options,obj){var css=obj.css;var sourceMap=obj.sourceMap;var autoFixUrls=options.convertToAbsoluteUrls===undefined&&sourceMap;if(options.convertToAbsoluteUrls||autoFixUrls){css=fixUrls(css)}if(sourceMap){css+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))))+" */"}var blob=new Blob([css],{type:"text/css"});var oldSrc=link.href;link.href=URL.createObjectURL(blob);if(oldSrc)URL.revokeObjectURL(oldSrc)}},function(module,exports){module.exports=function(css){var location=typeof window!=="undefined"&&window.location;if(!location){throw new Error("fixUrls requires window.location")}if(!css||typeof css!=="string"){return css}var baseUrl=location.protocol+"//"+location.host;var currentDir=baseUrl+location.pathname.replace(/\/[^\/]*$/,"/");var fixedCss=css.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi,function(fullMatch,origUrl){var unquotedOrigUrl=origUrl.trim().replace(/^"(.*)"$/,function(o,$1){return $1}).replace(/^'(.*)'$/,function(o,$1){return $1});if(/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/|\s*$)/i.test(unquotedOrigUrl)){return fullMatch}var newUrl;if(unquotedOrigUrl.indexOf("//")===0){newUrl=unquotedOrigUrl}else if(unquotedOrigUrl.indexOf("/")===0){newUrl=baseUrl+unquotedOrigUrl}else{newUrl=currentDir+unquotedOrigUrl.replace(/^\.\//,"")}return"url("+JSON.stringify(newUrl)+")"});return fixedCss}},,,,,,,,,,,,,,,function(module,__webpack_exports__,__webpack_require__){"use strict";Object.defineProperty(__webpack_exports__,"__esModule",{value:true});var __WEBPACK_IMPORTED_MODULE_0__src_gammel___=__webpack_require__(18);FusionCharts.addDep(__WEBPACK_IMPORTED_MODULE_0__src_gammel___["a"])},function(module,__webpack_exports__,__webpack_require__){"use strict";var __WEBPACK_IMPORTED_MODULE_0__fusioncharts_theme_gammel_css__=__webpack_require__(19);var __WEBPACK_IMPORTED_MODULE_0__fusioncharts_theme_gammel_css___default=__webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__fusioncharts_theme_gammel_css__);var themeObject={name:"gammel",theme:{base:{chart:{paletteColors:"#7CB5EC, #434348, #8EED7D, #F7A35C, #8085E9, #F15C80, #E4D354, #2B908F, #F45B5B, #91E8E1",usePlotGradientColor:"0",showPlotBorder:"0",showShadow:"0",showBorder:"0",showCanvasBorder:"0",bgColor:"#FFFFFF",bgAlpha:"100",canvasBgAlpha:"0",showAlternateHGridColor:"0",showAlternateVGridColor:"0",divLineAlpha:"100",divLineColor:"#E6E6E6",divLineThickness:"1",yAxisValuesPadding:"10",labelPadding:"10",canvasPadding:"10",valuePadding:"0",adjustDiv:"1",labelDisplay:"AUTO",transposeAxis:"1",showCanvasBase:"0",tooltipColor:"#333333",toolTipBgColor:"#F6F6F6",toolTipBgAlpha:"85",toolTipPadding:"8",toolTipBorderColor:"#999999",toolTipBorderRadius:"3",toolTipBorderThickness:"1",tooltipBorderAlpha:"90",showToolTipShadow:"1",baseFontSize:"11",baseFont:"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",baseFontColor:"#666666",outCnvBaseFontSize:"11",outCnvBaseFont:"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",outCnvBaseFontColor:"#666666",captionFontSize:"18",captionFontBold:"0",captionFontColor:"#333333",subCaptionFontSize:"12",subCaptionFontBold:"0",subCaptionFontColor:"#666666",valueFontBold:"1",valueFontSize:"11",valueFontColor:"#000000",placeValuesInside:"0",xAxisNameFontBold:"0",xAxisNameFontSize:"12",xAxisNameFontColor:"#666666",yAxisNameFontBold:"0",yAxisNameFontSize:"12",yAxisNameFontColor:"#666666",sYAxisNameFontBold:"0",sYAxisNameFontSize:"12",sYAxisNameFontColor:"#666666",xAxisNamePadding:"8",yAxisNamePadding:"8",sYAxisNamePadding:"8",captionPadding:"10",centerLabelFontSize:"11",centerLabelColor:"#666666",centerLabelBgOval:"1",useEllipsesWhenOverflow:"1",showLegend:"1",legendBgAlpha:"0",legendBorderThickness:"0",legendBorderAlpha:"0",legendShadow:"0",legendItemFontSize:"12",legendItemFontColor:"#333333",legendItemFontBold:"1",legendPosition:"bottom",legendNumColumns:"4",drawCustomLegendIcon:"1",legendIconSides:"2",legendIconBorderThickness:"0",legendItemHiddenColor:"#CCCCCC",drawCrossLineOnTop:"0",crossLineThickness:"1",crossLineColor:"#E6E6E6",crossLineAlpha:"60",showHoverEffect:"1",plotHoverEffect:"1",plotFillHoverAlpha:"95",columnHoverAlpha:"95",scrollColor:"#808080",scrollHeight:"11",flatscrollbars:"1",scrollshowbuttons:"1"}},column2d:{chart:{plotToolText:"$label: <b>$dataValue</b>",paletteColors:"#7CB5EC"}},column3d:{chart:{plotToolText:"$label: <b>$dataValue</b>",paletteColors:"#7CB5EC"}},line:{chart:{paletteColors:"#7CB5EC",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",plotToolText:"$label: <b>$dataValue</b>",showValues:"0",anchorBgColor:"#7CB5EC",anchorBorderHoverColor:"#D8D8D8",drawCrossLine:"1",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},area2d:{chart:{paletteColors:"#7CB5EC",plotBorderColor:"#7CB5EC",showPlotBorder:"1",plotBorderAlpha:"100",plotBorderThickness:"1.5",plotFillAlpha:"70",drawAnchors:"0",plotToolText:"$label: <b>$dataValue</b>",showValues:"0",drawCrossLine:"1"}},bar2d:{chart:{plotToolText:"$label: <b>$dataValue</b>",paletteColors:"#7CB5EC"}},bar3d:{chart:{plotToolText:"$label: <b>$dataValue</b>",paletteColors:"#7CB5EC"}},pie2d:{chart:{showZeroPies:"1",plotToolText:"$label: <b>$dataValue</b>",showPercentValues:"1",showPercentInToolTip:"0",labelSepChar:": ",use3DLighting:"0",enableMultiSlicing:"0",isSmartLineSlanted:"0",smartLineColor:"#434348",smartLineThickness:"1",smartLabelClearance:"0"},data:function(b,a,c){a=window.Math;return{alpha:100-(c>50?a.round(100/a.ceil(c/10)):20)*a.floor(b/10)}}},pie3d:{chart:{showZeroPies:"1",plotToolText:"$label: <b>$dataValue</b>",showPercentValues:"1",showPercentInToolTip:"0",labelSepChar:": ",use3DLighting:"0",enableMultiSlicing:"0",pieYScale:"75",pieSliceDepth:"10",isSmartLineSlanted:"0",smartLineColor:"#434348",smartLineThickness:"1",smartLabelClearance:"0"},data:function(b,a,c){a=window.Math;return{alpha:100-(c>50?a.round(100/a.ceil(c/10)):20)*a.floor(b/10)}}},doughnut2d:{chart:{showZeroPies:"1",plotToolText:"$label: <b>$dataValue</b>",showPercentValues:"1",showPercentInToolTip:"0",labelSepChar:": ",use3DLighting:"0",enableMultiSlicing:"0",isSmartLineSlanted:"0",smartLineColor:"#434348",smartLineThickness:"1",smartLabelClearance:"0"},data:function(b,a,c){a=window.Math;return{alpha:100-(c>50?a.round(100/a.ceil(c/10)):20)*a.floor(b/10)}}},doughnut3d:{chart:{showZeroPies:"1",plotToolText:"$label: <b>$dataValue</b>",showPercentValues:"1",showPercentInToolTip:"0",labelSepChar:": ",use3DLighting:"0",enableMultiSlicing:"0",pieYScale:"75",pieSliceDepth:"10",isSmartLineSlanted:"0",smartLineColor:"#434348",smartLineThickness:"1",smartLabelClearance:"0"},data:function(b,a,c){a=window.Math;return{alpha:100-(c>50?a.round(100/a.ceil(c/10)):20)*a.floor(b/10)}}},pareto2d:{chart:{paletteColors:"#434348",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",plotToolText:"$label: <b>$dataValue</b>",showValues:"0",lineColor:"#7CB5EC",anchorBgColor:"#7CB5EC",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2"}},pareto3d:{chart:{paletteColors:"#434348",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",plotToolText:"$label: <b>$dataValue</b>",showValues:"0",lineColor:"#7CB5EC",anchorBgColor:"#7CB5EC",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2"}},mscolumn2d:{chart:{showValues:"0",drawCrossLine:"1"}},mscolumn3d:{chart:{showValues:"0"}},msline:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",drawCrossLine:"1",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},msbar2d:{chart:{showValues:"0",drawCrossLine:"1"}},msbar3d:{chart:{showValues:"0"}},msarea:{chart:{showPlotBorder:"1",plotBorderAlpha:"100",plotBorderThickness:"1.5",plotFillAlpha:"70",drawAnchors:"0",showValues:"0",drawCrossLine:"1"}},marimekko:{chart:{plotToolText:"$seriesName - <b>$label: $dataValue</b>"}},zoomline:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},zoomlinedy:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},stackedcolumn2d:{chart:{showValues:"0",showSum:"1"}},stackedcolumn3d:{chart:{showValues:"0",showSum:"1"}},stackedbar2d:{chart:{showValues:"0",showSum:"1"}},stackedbar3d:{chart:{showValues:"0",showSum:"1"}},stackedarea2d:{chart:{showValues:"0",showSum:"0",drawCrossLine:"1",plotFillAlpha:"70"}},msstackedcolumn2d:{chart:{showValues:"0",showSum:"0",drawCrossLine:"0"}},mscombi2d:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",drawCrossLine:"1",legendIconBorderThickness:"1"}},mscombi3d:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},mscolumnline3d:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},stackedcolumn2dline:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",drawCrossLine:"1",legendIconBorderThickness:"1"}},stackedcolumn3dline:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},mscombidy2d:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",drawCrossLine:"1",legendIconBorderThickness:"1"}},mscolumn3dlinedy:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},stackedcolumn3dlinedy:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},msstackedcolumn2dlinedy:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",drawCrossLine:"1",legendIconBorderThickness:"1"}},scatter:{chart:{drawCustomLegendIcon:"0",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"7",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2"}},bubble:{chart:{quadrantLineThickness:"2",quadrantLineColor:"#000000",quadrantLineDashed:"1",quadrantLineAlpha:"100",setAdaptiveYMin:"1",setAdaptiveXMin:"1",quadrantLineDashGap:"3.5",quadrantLineDashLen:"2",use3dlighting:"0",plotFillAlpha:"80"}},zoomscatter:{chart:{drawCustomLegendIcon:"0",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"7",showValues:"0"}},scrollcolumn2d:{chart:{showLegend:"1",showShadow:"0",adjustDiv:"1",flatScrollBars:"1",scrollShowButtons:"1",scrollHeight:"15",scrollColor:"#F3F3F3"}},scrollline2d:{chart:{showValues:"0",showShadow:"0",adjustDiv:"1",lineThickness:"2",anchorRadius:"4",showLegend:"1",flatScrollBars:"1",scrollShowButtons:"1",scrollHeight:"15",scrollColor:"#F3F3F3",anchorHoverEffect:"1",anchorHoverRadius:"6",anchorBorderHoverThickness:"2",anchorBgHoverColor:"#FFFFFF",legendIconBorderThickness:"1"}},scrollarea2d:{chart:{showValues:"0",showCanvasBase:"0",canvasBaseDepth:"0",showShadow:"0",chartTopMargin:"35",adjustDiv:"1",lineThickness:"2",drawAnchors:"0",showLegend:"1",flatScrollBars:"1",scrollShowButtons:"1",scrollHeight:"15",scrollColor:"#F3F3F3"}},scrollstackedcolumn2d:{chart:{showLegend:"1",showValues:"0",flatScrollBars:"1",scrollShowButtons:"1",scrollHeight:"15",scrollColor:"#F3F3F3"}},scrollcombi2d:{chart:{showValues:"0",lineThickness:"2",anchorRadius:"4",showLegend:"1",flatScrollBars:"1",scrollShowButtons:"1",scrollHeight:"15",scrollColor:"#F3F3F3",anchorHoverEffect:"1",anchorHoverRadius:"4",anchorBorderHoverThickness:"2",anchorBgHoverColor:"#FFFFFF",legendIconBorderThickness:"1"}},scrollcombidy2d:{chart:{showValues:"0",lineThickness:"2",anchorRadius:"4",showLegend:"1",flatScrollBars:"1",scrollShowButtons:"1",scrollHeight:"15",scrollColor:"#F3F3F3",anchorHoverEffect:"1",anchorHoverRadius:"4",anchorBorderHoverThickness:"2",anchorBgHoverColor:"#FFFFFF",legendIconBorderThickness:"1"}},angulargauge:{chart:{setAdaptiveMin:"1",adjustTM:"1",tickvaluedistance:"10",placeTicksInside:"0",autoAlignTickValues:"1",showGaugeBorder:"0",minortmnumber:"0",majorTMHeight:"8",gaugeFillMix:"{light-0}",pivotbgcolor:"#000000",pivotfillmix:"0",showpivotborder:"1",pivotBorderColor:"#FFFFFF",showValue:"0",valueBelowPivot:"1"},dials:{dial:[{bgColor:"#000000",borderThickness:"0",rearExtension:"13"}]}},bulb:{chart:{is3D:"0",placeValuesInside:"1",valueFont:"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif"}},cylinder:{chart:{cylRadius:"50",cylYScale:"30"}},hled:{chart:{showGaugeBorder:"0",setAdaptiveMin:"1",adjustTM:"1",placeTicksInside:"0",autoAlignTickValues:"1",minortmnumber:"0",majorTMHeight:"8",majorTMAlpha:"50"}},hlineargauge:{chart:{showGaugeBorder:"0",setAdaptiveMin:"1",adjustTM:"1",placeTicksInside:"0",autoAlignTickValues:"1",minortmnumber:"0",majorTMHeight:"8",majorTMAlpha:"50",gaugeFillMix:"{light-0}"}},thermometer:{chart:{use3DLighting:"0",manageResize:"1",autoScale:"1",showGaugeBorder:"1",gaugeBorderAlpha:"40",placeTicksInside:"0",autoAlignTickValues:"1",minortmnumber:"0",majorTMHeight:"8",majorTMAlpha:"50"}},vled:{chart:{showGaugeBorder:"0",setAdaptiveMin:"1",adjustTM:"1",placeTicksInside:"0",autoAlignTickValues:"1",minortmnumber:"0",majorTMHeight:"8",majorTMAlpha:"50"}},realtimearea:{chart:{showLegend:"1",showValues:"0"}},realtimecolumn:{chart:{showLegend:"1",showValues:"0"}},realtimeline:{chart:{showValues:"0",lineThickness:"2",anchorRadius:"4",showLegend:"1",anchorHoverEffect:"1",anchorHoverRadius:"6",anchorBorderHoverThickness:"2",anchorBgHoverColor:"#FFFFFF",legendIconBorderThickness:"1"}},realtimestackedarea:{chart:{showLegend:"1",showValues:"0",showSum:"0",plotFillAlpha:"80"}},realtimestackedcolumn:{chart:{showLegend:"1",showValues:"1",showSum:"1"}},realtimelinedy:{chart:{lineThickness:"2",anchorRadius:"4",showLegend:"1",anchorHoverEffect:"1",anchorHoverRadius:"6",anchorBorderHoverThickness:"2",anchorBgHoverColor:"#FFFFFF",legendIconBorderThickness:"1"}},sparkline:{chart:{plotFillColor:"#7CB5EC",anchorRadius:"4",highColor:"#8EED7D",lowColor:"#F45B5B",captionPosition:"top",showOpenAnchor:"0",showCloseAnchor:"0",showOpenValue:"0",showCloseValue:"0",showHighLowValue:"0",periodColor:"#C0C0C0"}},sparkcolumn:{chart:{plotFillColor:"#7CB5EC",highColor:"#8EED7D",lowColor:"#F45B5B",captionPosition:"top",periodColor:"#C0C0C0"}},sparkwinloss:{chart:{winColor:"#7CB5EC",lossColor:"#F45B5B",captionPosition:"top",drawColor:"#E4D354",scoreLessColor:"#8085E9",periodColor:"#C0C0C0"}},hbullet:{chart:{plotFillColor:"#434348",showTickMarks:"0",showTickValues:"1",showLimits:"1"}},vbullet:{chart:{plotFillColor:"#434348",showTickMarks:"0",showTickValues:"1",showLimits:"1"}},funnel:{chart:{is2D:"1",isSmartLineSlanted:"0",smartLineColor:"#434348",smartLineThickness:"1",smartLabelClearance:"0",streamlinedData:"1",useSameSlantAngle:"1",alignCaptionWithCanvas:"1",showPlotBorder:"1",plotBorderColor:"#FFFFFF",plotBorderThickness:"1.5",plotBorderAlpha:"100"}},pyramid:{chart:{is2D:"1",isSmartLineSlanted:"0",smartLineColor:"#434348",smartLineThickness:"1",smartLabelClearance:"0",streamlinedData:"1",useSameSlantAngle:"1",alignCaptionWithCanvas:"1",use3dlighting:"0",showPlotBorder:"1",plotBorderColor:"#FFFFFF",plotBorderThickness:"1.5",plotBorderAlpha:"100"}},gantt:{chart:{taskBarFillMix:"{light+0}",flatScrollBars:"1",gridBorderAlpha:"100",gridBorderColor:"#E6E6E6",ganttLineColor:"#E6E6E6",ganttLineAlpha:"100",taskBarRoundRadius:"2",showHoverEffect:"1",plotHoverEffect:"1",plotFillHoverAlpha:"50",showCategoryHoverBand:"1",categoryHoverBandAlpha:"50",showGanttPaneVerticalHoverBand:"1",showProcessHoverBand:"1",processHoverBandAlpha:"50",showGanttPaneHorizontalHoverBand:"1",showConnectorHoverEffect:"1",connectorHoverAlpha:"50",showTaskHoverEffect:"1",taskHoverFillAlpha:"50",slackHoverFillAlpha:"50",scrollShowButtons:"0",drawCustomLegendIcon:"0",legendShadow:"0",legendBorderAlpha:"0",legendBorderThickness:"0",legendIconBorderThickness:"0",legendBgAlpha:"0"},categories:[{fontcolor:"#434348",fontsize:"11",bgcolor:"#F4F4F4",hoverBandAlpha:"50",showGanttPaneHoverBand:"1",showHoverBand:"1",category:[{fontcolor:"#434348",fontsize:"11",bgcolor:"#F4F4F4"}]}],tasks:{showBorder:"0",showHoverEffect:"0"},processes:{fontcolor:"#434348",isanimated:"0",bgcolor:"#FFFFFF",bgAlpha:"70",headerbgcolor:"#F4F4F4",headerfontcolor:"#434348",showGanttPaneHoverBand:"1",showHoverBand:"1"},text:{fontcolor:"#434348",bgcolor:"#FFFFFF"},datatable:{fontcolor:"#434348",bgcolor:"#FFFFFF",bgAlpha:"100",datacolumn:[{bgcolor:"#FFFFFF"}]},connectors:[{hoverThickness:"1.5"}],milestones:{milestone:[{color:"#8EED7D"}]}},logmscolumn2d:{chart:{showValues:"0",drawCrossLine:"1"}},logmsline:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",drawCrossLine:"1",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},spline:{chart:{paletteColors:"#7CB5EC",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBgColor:"#7CB5EC",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",plotToolText:"$label: <b>$dataValue</b>",legendIconBorderThickness:"1"}},splinearea:{chart:{paletteColors:"#7CB5EC",drawAnchors:"0",showValues:"0",plotFillAlpha:"70",plotToolText:"$label: <b>$dataValue</b>"}},msspline:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",drawCrossLine:"1",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},mssplinearea:{chart:{showValues:"0",showLegend:"1",drawAnchors:"0",plotFillAlpha:"70"}},errorbar2d:{chart:{paletteColors:"#7CB5EC, #8EED7D, #F7A35C, #8085E9, #F15C80, #E4D354, #2B908F, #F45B5B, #91E8E1",errorBarColor:"#434348",errorBarThickness:"1.3",showValues:"0"}},errorline:{chart:{paletteColors:"#7CB5EC, #8EED7D, #F7A35C, #8085E9, #F15C80, #E4D354, #2B908F, #F45B5B, #91E8E1",errorBarColor:"#434348",errorBarThickness:"1.3",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},errorscatter:{chart:{paletteColors:"#7CB5EC, #8EED7D, #F7A35C, #8085E9, #F15C80, #E4D354, #2B908F, #F45B5B, #91E8E1",errorBarColor:"#434348",errorBarThickness:"1.3",drawCustomLegendIcon:"0",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"7",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2"}},inversemsarea:{chart:{showValues:"0",drawCrossLine:"1",showLegend:"1",plotFillAlpha:"70"}},inversemscolumn2d:{chart:{showLegend:"1",showValues:"0"}},inversemsline:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",drawCrossLine:"1",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},dragcolumn2d:{chart:{showValues:"0",showLegend:"1"},categories:[{category:[{fontItalic:"1"}]}],dataset:[{data:[{allowDrag:"1",alpha:"70"}]}]},dragline:{chart:{drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"},categories:[{category:[{fontItalic:"1"}]}],dataset:[{data:[{allowDrag:"1",alpha:"70",dashed:"1"}]}]},dragarea:{chart:{showValues:"0",showLegend:"1",drawAnchors:"0",plotFillAlpha:"70"},categories:[{category:[{fontItalic:"1"}]}],dataset:[{data:[{allowDrag:"1",dashed:"1"}]}]},treemap:{chart:{parentLabelLineHeight:"13",baseFontSize:"11",labelFontSize:"11",showParent:"1",showNavigationBar:"0",plotBorderThickness:"0.5",plotBorderColor:"#FFFFFF",labelGlow:"0",labelGlowIntensity:"100",btnBackChartTooltext:"Back",btnResetChartTooltext:"Home",legendScaleLineThickness:"0",legendaxisborderalpha:"0",legendShadow:"0",toolbarButtonScale:"1.50",plotToolText:"$label, $dataValue, $sValue"},data:[{fillColor:"#F4F4F4",data:[{fillColor:"#F4F4F4"}]}]},radar:{chart:{showLegend:"1",plotFillAlpha:"40",anchorBgAlpha:"40",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"6",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2",legendIconBorderThickness:"1"}},heatmap:{chart:{baseFontSize:"11",labelFontSize:"11",showPlotBorder:"1",plotBorderAlpha:"100",plotBorderThickness:"0.5",plotBorderColor:"#FFFFFF",tlFontColor:"#FDFDFD",tlFont:"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",tlFontSize:"10",trFontColor:"#FDFDFD",trFont:"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",trFontSize:"10",blFontColor:"#FDFDFD",blFont:"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",blFontSize:"10",brFontColor:"#FDFDFD",brFont:"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",brFontSize:"10",captionPadding:"20",legendScaleLineThickness:"0",legendaxisborderalpha:"0",legendShadow:"0"},colorrange:{gradient:"1",code:"#7CB5EC"}},boxandwhisker2d:{chart:{drawCustomLegendIcon:"0",showLegend:"1",showDetailedLegend:"1",showValues:"0",showPlotBorder:"1",plotBorderColor:"#7CB5EC",plotBorderAlpha:"100",plotBorderThickness:"1.5",upperBoxBorderAlpha:"0",lowerBoxBorderAlpha:"0",lowerQuartileAlpha:"0",upperQuartileAlpha:"0",upperWhiskerColor:"#7CB5EC",upperWhiskerThickness:"1.5",lowerWhiskerColor:"#7CB5EC",lowerWhiskerThickness:"1.5",medianColor:"#7CB5EC",medianThickness:"0.7",medianAlpha:"100",outliericonshape:"spoke",outliericonsides:"9",meaniconcolor:"#7CB5EC",meanIconShape:"spoke",meaniconsides:"9",meaniconradius:"5"}},candlestick:{chart:{showShadow:"0",showVPlotBorder:"0",bearFillColor:"#F45B5B",bullFillColor:"#8EED7D",plotLineThickness:"0.3",plotLineAlpha:"100",divLineDashed:"0",showDetailedLegend:"1",showHoverEffect:"1",plotHoverEffect:"1",showVolumeChart:"0",trendLineColor:"#434348",trendLineThickness:"1",trendValueAlpha:"100",rollOverBandAlpha:"100",rollOverBandColor:"#E6E6E6"},categories:[{verticalLineColor:"#434348",verticalLineThickness:"1",verticalLineAlpha:"35"}]},dragnode:{chart:{use3DLighting:"0",plotBorderThickness:"0",plotBorderAlpha:"0",showDetailedLegend:"1",divLineThickness:"0"},dataset:[{color:"#7CB5EC"}],connectors:[{connector:[{color:"#434348",strength:"1.5"}]}]},msstepline:{chart:{drawAnchors:"0",lineThickness:"2",showValues:"0",plotToolText:"$label: <b>$dataValue</b>"}},multiaxisline:{chart:{showValues:"0",showLegend:"1",lineThickness:"2",connectNullData:"1",drawAnchors:"0",divLineDashed:"0",divLineColor:"#E6E6E6",vDivLineColor:"#E6E6E6",vDivLineDashed:"0",yAxisNameFontSize:"11",drawCustomLegendIcon:"0",legendIconBorderThickness:"1"},axis:[{divLineColor:"#E6E6E6",setAdaptiveYMin:"1",divLineDashed:"0"}]},multilevelpie:{chart:{useHoverColor:"1",hoverFillColor:"#8087E5",showHoverEffect:"1",plotHoverEffect:"1"},category:[{color:"#8087E5",category:[{color:"#7CB5EC",category:[{color:"#7CB5EC"}]}]}]},selectscatter:{chart:{drawCustomLegendIcon:"0",drawAnchors:"1",anchorRadius:"4",anchorHoverRadius:"7",showValues:"0",anchorBorderHoverColor:"#D8D8D8",anchorHoverEffect:"1",anchorBgHoverAlpha:"95",anchorBorderHoverThickness:"2"}},waterfall2d:{chart:{showValues:"0",paletteColors:"#7CB5EC, #434348, #8085E9, #F15C80, #E4D354, #2B908F, #F45B5B, #91E8E1",positiveColor:"#8EED7D",negativeColor:"#F7A35C",showConnectors:"1",connectorDashed:"1",connectorThickness:"1.5",connectorColor:"#434348"}},kagi:{chart:{rallyThickness:"2",declineThickness:"2",drawAnchors:"0",rallyColor:"#8EED7D",declineColor:"#F45B5B",showValues:"0"}},geo:{chart:{showLabels:"0",legendScaleLineThickness:"0",legendaxisborderalpha:"0",legendShadow:"0",fillColor:"#E6E6E6",showEntityHoverEffect:"1",entityFillHoverAlpha:"70",connectorHoverAlpha:"70",markerBorderHoverAlpha:"70",showBorder:"1",borderColor:"#434348",borderThickness:"0.3",nullEntityColor:"434348",nullEntityAlpha:"30",entityFillHoverColor:"#434348"},colorrange:{gradient:"1",code:"#7CB5EC"}},timeseries:{caption:{style:{text:{"font-size":18,"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",fill:"#333333","font-weight":500}}},subcaption:{style:{text:{"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif","font-size":12,fill:"#666666"}}},chart:{paletteColors:"#7CB5EC, #434348, #8EED7D, #F7A35C, #8085E9, #F15C80, #E4D354, #2B908F, #F45B5B, #91E8E1",multiCanvasTooltip:1,baseFont:"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",style:{text:{"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif"},canvas:{stroke:"#E6E6E6","stroke-width":1}}},tooltip:{style:{container:{"background-color":"#F6F6F6",opacity:.85,border:"1px solid rgba(153, 153, 153, 0.9)","border-radius":"3px",padding:"8px"},text:{"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",color:"#333333"},header:{"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",color:"#666666",padding:"0px"},body:{padding:"0px","font-size":"12px"}}},navigator:{scrollbar:{style:{button:{fill:"#E6E6E6",stroke:"#CCCCCC","stroke-width":1},arrow:{fill:"#333333"},grip:{fill:"#333333"},track:{fill:"#F2F2F2"},scroller:{fill:"#CCCCCC"}}},window:{style:{handle:{fill:"#F2F2F2",stroke:"#999999","stroke-width":.3},mask:{opacity:.3,fill:"#6667C2"}}}},crossline:{style:{line:{stroke:"#E6E6E6",opacity:.6,"stroke-width":1}}},extensions:{customRangeSelector:{style:{title:{text:{fill:"#333333","font-weight":"500"},icon:{fill:"#333333"}},label:{"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",color:"#666666"},input:{"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",color:"#333333","background-color":"#FFFFFF",border:"1px solid #CCCCCC"},button:{apply:{"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif","background-color":"#7CB5EC",color:"#333333",border:"none","font-weight":600},cancel:{"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",color:"#666666","background-color":"#FFFFFF",border:"none","font-weight":500}},"button:hover":{cancel:{color:"#333333","font-weight":600}},calendar:{navprev:"fc-cal-nav-prev-gammel",navnext:"fc-cal-nav-next-gammel",month:"fc-cal-month-gammel",days:"fc-cal-day-gammel",normaldate:"fc-cal-date-normal-gammel",disableddate:"fc-cal-date-disabled-gammel",selecteddate:"fc-cal-date-selected-gammel",weekend:"fc-cal-weekend-gammel"}}},standardRangeSelector:{style:{button:{text:{fill:"#666666","font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif"},background:{fill:"#F7F7F7"}},"button:hover":{text:{fill:"#333333","font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif"},background:{fill:"#F7F7F7"}},"button:active":{text:{fill:"#333333","font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif","font-weight":600},background:{fill:"#EBEBF5"}},separator:{stroke:"#E6E6E6"}}}},legend:{item:{style:{text:{fill:"#333333","font-size":12,"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif","font-weight":600}}}},xaxis:{style:{title:{"font-size":12,"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",fill:"#666666"},"grid-line":{stroke:"#E6E6E6","stroke-width":1},"tick-mark-major":{stroke:"#CCD6EB","stroke-width":1},"tick-mark-minor":{stroke:"#CCD6EB","stroke-width":.75},"label-major":{color:"#666666"},"label-minor":{color:"#666666"},"label-context":{color:"#333333","font-weight":600}}},plotconfig:{column:{style:{"plot:hover":{opacity:.75},"plot:highlight":{opacity:.9}}},line:{style:{plot:{"stroke-width":2},anchor:{"stroke-width":1}}},area:{style:{anchor:{"stroke-width":1}}},candlestick:{style:{bear:{stroke:"#F45B5B",fill:"#F45B5B"},bull:{stroke:"#8EED7D",fill:"#8EED7D"},"bear:hover":{opacity:.75},"bear:highlight":{opacity:.9},"bull:hover":{opacity:.75},"bull:highlight":{opacity:.9}}},ohlc:{style:{bear:{stroke:"#F45B5B",fill:"#F45B5B"},bull:{stroke:"#8EED7D",fill:"#8EED7D"},"bear:hover":{opacity:.75},"bear:highlight":{opacity:.9},"bull:hover":{opacity:.75},"bull:highlight":{opacity:.9}}}},yaxis:[{style:{title:{"font-size":12,"font-family":"Lucida Grande, Lucida Sans Unicode, Arial, Helvetica, sans-serif",fill:"#666666"},"tick-mark":{stroke:"#E6E6E6","stroke-width":1},"grid-line":{stroke:"#E6E6E6","stroke-width":1},label:{color:"#666666"}}}]}}};__webpack_exports__["a"]={extension:themeObject,name:"gammelTheme",type:"theme"}},function(module,exports,__webpack_require__){var content=__webpack_require__(20);if(typeof content==="string")content=[[module.i,content,""]];var transform;var insertInto;var options={hmr:true};options.transform=transform;options.insertInto=undefined;var update=__webpack_require__(1)(content,options);if(content.locals)module.exports=content.locals;if(false){module.hot.accept("!!../../../node_modules/css-loader/index.js!./fusioncharts.theme.gammel.css",function(){var newContent=require("!!../../../node_modules/css-loader/index.js!./fusioncharts.theme.gammel.css");if(typeof newContent==="string")newContent=[[module.id,newContent,""]];var locals=function(a,b){var key,idx=0;for(key in a){if(!b||a[key]!==b[key])return false;idx++}for(key in b)idx--;return idx===0}(content.locals,newContent.locals);if(!locals)throw new Error("Aborting CSS HMR due to changed css-modules locals.");update(newContent)});module.hot.dispose(function(){update()})}},function(module,exports,__webpack_require__){exports=module.exports=__webpack_require__(0)(false);exports.push([module.i,'/* ft calendar customization */\n.fc-cal-nav-prev-gammel, .fc-cal-nav-next-gammel {\n font-family:\n "Lucida Grande";\n font-weight: 400;\n}\n\n.fc-cal-month-gammel {\n font-family:\n "Lucida Grande";\n background-color: #7CB5EC;\n color: #333333;\n}\n\n.fc-cal-day-gammel, .fc-cal-date-normal-gammel {\n font-family:\n "Lucida Grande";\n color: #333333;\n font-size: 11px;\n}\n\n.fc-cal-date-disabled-gammel {\n font-family:\n "Lucida Grande";\n color: #999999;\n font-size: 11px;\n}\n\n.fc-cal-weekend-gammel {\n background-color: #F3F8FD;\n}\n\n.fc-cal-date-selected-gammel {\n font-family:\n "Lucida Grande";\n background-color: #7CB5EC;\n color: #333333;\n font-weight: bold;\n font-size: 11px;\n}',""])}])});
//# sourceMappingURL=fusioncharts.theme.gammel.js.map