qcobjects-charts
Version:
App template for New App in QCObjects
1,222 lines (1,221 loc) • 98.2 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 = 13)
}
)([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_fusion___ = __webpack_require__(14);
FusionCharts.addDep(__WEBPACK_IMPORTED_MODULE_0__src_fusion___["a"])
}
, function(module, __webpack_exports__, __webpack_require__) {
"use strict";
var __WEBPACK_IMPORTED_MODULE_0__fusioncharts_theme_fusion_css__ = __webpack_require__(15);
var __WEBPACK_IMPORTED_MODULE_0__fusioncharts_theme_fusion_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__fusioncharts_theme_fusion_css__);
var themeObject = {
name: "fusion",
theme: {
base: {
chart: {
paletteColors: "#5D62B5, #29C3BE, #F2726F, #FFC533, #62B58F, #BC95DF, #67CDF2",
showShadow: "0",
showPlotBorder: "0",
usePlotGradientColor: "0",
showValues: "0",
bgColor: "#FFFFFF",
canvasBgAlpha: "0",
bgAlpha: "100",
showBorder: "0",
showCanvasBorder: "0",
showAlternateHGridColor: "0",
divLineColor: "#DFDFDF",
showXAxisLine: "0",
yAxisNamePadding: "15",
sYAxisNamePadding: "15",
xAxisNamePadding: "15",
captionPadding: "15",
xAxisNameFontColor: "#999",
yAxisNameFontColor: "#999",
sYAxisNameFontColor: "#999",
yAxisValuesPadding: "15",
labelPadding: "10",
transposeAxis: "1",
toolTipBgColor: "#FFFFFF",
toolTipPadding: "6",
toolTipBorderColor: "#E1E1E1",
toolTipBorderThickness: "1",
toolTipBorderAlpha: "100",
toolTipBorderRadius: "2",
baseFont: "Source Sans Pro",
baseFontColor: "#5A5A5A",
baseFontSize: "14",
xAxisNameFontBold: "0",
yAxisNameFontBold: "0",
sYAxisNameFontBold: "0",
xAxisNameFontSize: "15",
yAxisNameFontSize: "15",
sYAxisNameFontSize: "15",
captionFontSize: "18",
captionFontFamily: "Source Sans Pro SemiBold",
subCaptionFontSize: "13",
captionFontBold: "1",
subCaptionFontBold: "0",
subCaptionFontColor: "#999",
valueFontColor: "#000000",
valueFont: "Source Sans Pro",
drawCustomLegendIcon: "1",
legendShadow: "0",
legendBorderAlpha: "0",
legendBorderThickness: "0",
legendItemFont: "Source Sans Pro",
legendItemFontColor: "#7C7C7C",
legendIconBorderThickness: "0",
legendBgAlpha: "0",
legendItemFontSize: "15",
legendCaptionFontColor: "#999",
legendCaptionFontSize: "13",
legendCaptionFontBold: "0",
legendScrollBgColor: "#FFF",
crossLineAnimation: "1",
crossLineAlpha: "100",
crossLineColor: "#DFDFDF",
showHoverEffect: "1",
plotHoverEffect: "1",
plotFillHoverAlpha: "90",
barHoverAlpha: "90"
}
},
column2d: {
chart: {
paletteColors: "#5D62B5",
placeValuesInside: "0"
}
},
column3d: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
showShadow: "0",
chartTopMargin: "35",
paletteColors: "#5D62B5"
}
},
line: {
chart: {
lineThickness: "2",
paletteColors: "#5D62B5",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
drawCrossLine: "1"
}
},
area2d: {
chart: {
paletteColors: "#5D62B5",
drawCrossLine: "1"
}
},
bar2d: {
chart: {
placeValuesInside: "0",
showAlternateVGridColor: "0",
yAxisValuesPadding: "10",
paletteColors: "#5D62B5"
}
},
bar3d: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
chartTopMargin: "35",
adjustDiv: "1",
showAlternateVGridColor: "0",
yAxisValuesPadding: "10",
paletteColors: "#5D62B5"
}
},
pie2d: {
chart: {
use3DLighting: "0",
showPercentValues: "1",
showValues: "1",
showPercentInTooltip: "0",
showLegend: "1",
legendIconSides: "2",
useDataPlotColorForLabels: 0
}
},
pie3d: {
chart: {
use3DLighting: "0",
showPercentValues: "1",
showValues: "1",
useDataPlotColorForLabels: "0",
showLegend: "1",
legendIconSides: "2",
pieSliceDepth: "15",
pieYScale: "60",
labelDistance: "20",
showPercentInTooltip: "0"
}
},
doughnut2d: {
chart: {
use3DLighting: "0",
showPercentValues: "1",
showValues: "1",
useDataPlotColorForLabels: "0",
showLegend: "1",
legendIconSides: "2",
showPlotBorder: "0",
centerLabelColor: "#666",
centerLabelFontSize: "14",
showPercentInTooltip: "0"
}
},
doughnut3d: {
chart: {
use3DLighting: "0",
showPercentValues: "1",
showValues: "1",
useDataPlotColorForLabels: "0",
showLegend: "1",
legendIconSides: "2",
pieSliceDepth: "15",
pieYScale: "60",
centerLabelColor: "#666",
centerLabelFontSize: "14",
showPercentInTooltip: "0"
}
},
pareto2d: {
chart: {
paletteColors: "#5D62B5",
lineThickness: "2",
anchorRadius: "4",
lineColor: "#5D5D5D",
anchorBgColor: "#5D5D5D",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
pareto3d: {
chart: {
paletteColors: "#5D62B5",
lineThickness: "2",
anchorRadius: "4",
lineColor: "#5D5D5D",
anchorBgColor: "#5D5D5D",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1",
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
chartTopMargin: "35",
adjustDiv: "1",
showAlternateVGridColor: "0"
}
},
mscolumn2d: {
chart: {
showLegend: "1",
legendIconSides: "4"
}
},
mscolumn3d: {
chart: {
showLegend: "1",
legendIconSides: "4",
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
chartTopMargin: "35",
adjustDiv: "1",
showAlternateVGridColor: "0"
}
},
msline: {
chart: {
lineThickness: "2",
anchorRadius: "4",
drawCrossLine: "1",
showLegend: "1",
legendIconSides: "2",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
msbar2d: {
chart: {
placeValuesInside: "0",
showAlternateVGridColor: "0",
showLegend: "1",
legendIconSides: "4",
yAxisValuesPadding: "10"
}
},
msbar3d: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
chartTopMargin: "35",
adjustDiv: "1",
showAlternateVGridColor: "0",
showLegend: "1",
legendIconSides: "4",
yAxisValuesPadding: "10"
}
},
msarea: {
chart: {
drawCrossLine: "1",
showLegend: "1",
legendIconSides: "4"
}
},
marimekko: {
chart: {
legendIconSides: "4",
valueBgColor: "#FFFFFF",
valueBgAlpha: "65"
}
},
zoomline: {
chart: {
lineThickness: "2",
flatScrollBars: "1",
scrollShowButtons: "0",
scrollColor: "#FFF",
scrollheight: "10",
crossLineThickness: "1",
crossLineColor: "#DFDFDF",
showLegend: "1",
legendIconSides: "2",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
zoomlinedy: {
chart: {
lineThickness: "2",
flatScrollBars: "1",
scrollShowButtons: "0",
scrollColor: "#FFF",
scrollHeight: "10",
crossLineThickness: "1",
crossLineColor: "#DFDFDF",
showLegend: "1",
legendIconSides: "2",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
stackedcolumn2d: {
chart: {
showLegend: "1",
legendIconSides: "4"
}
},
stackedcolumn3d: {
chart: {
showLegend: "1",
legendIconSides: "4",
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
chartTopMargin: "35",
adjustDiv: "1"
}
},
stackedbar2d: {
chart: {
placeValuesInside: "0",
showAlternateVGridColor: "0",
legendIconSides: "4",
yAxisValuesPadding: "10"
}
},
stackedbar3d: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
chartTopMargin: "35",
adjustDiv: "1",
showAlternateVGridColor: "0",
showLegend: "1",
legendIconSides: "4",
yAxisValuesPadding: "10"
}
},
stackedarea2d: {
chart: {
drawCrossLine: "1",
showLegend: "1",
legendIconSides: "4"
}
},
msstackedcolumn2d: {
chart: {
showLegend: "1",
legendIconSides: "4"
}
},
mscombi2d: {
chart: {
lineThickness: "2",
anchorRadius: "4",
drawCrossLine: "1",
showLegend: "1",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
mscombi3d: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
chartTopMargin: "35",
adjustDiv: "1",
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
mscolumnline3d: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
chartTopMargin: "35",
adjustDiv: "1",
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
stackedcolumn2dline: {
chart: {
showLegend: "1",
drawCustomLegendIcon: "0",
lineThickness: "2",
anchorRadius: "4",
drawCrossLine: "1",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
stackedcolumn3dline: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
chartTopMargin: "35",
adjustDiv: "1",
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
mscombidy2d: {
chart: {
lineThickness: "2",
anchorRadius: "4",
drawCrossLine: "1",
showLegend: "1",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
mscolumn3dlinedy: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
placeValuesInside: "0",
showShadow: "0",
adjustDiv: "1",
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
stackedcolumn3dlinedy: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
showShadow: "0",
adjustDiv: "1",
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
msstackedcolumn2dlinedy: {
chart: {
placeValuesInside: "0",
showShadow: "0",
adjustDiv: "1",
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
},
lineset: [{
color: "#5D5D5D",
anchorBgColor: "#5D5D5D"
}]
},
scatter: {
chart: {
showCanvasBase: "0",
canvasBaseDepth: "0",
showShadow: "0",
adjustDiv: "1",
lineThickness: "2",
anchorRadius: "4",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverColor: "#AFAFAF",
anchorBorderHoverThickness: "1.5",
showLegend: "1",
drawCustomLegendIcon: "0"
}
},
zoomscatter: {
chart: {
showShadow: "0",
adjustDiv: "1",
lineThickness: "2",
anchorRadius: "4",
anchorBorderHoverColor: "#AFAFAF",
showLegend: "1",
drawCustomLegendIcon: "0"
}
},
bubble: {
chart: {
use3DLighting: "0",
showLegend: "1",
legendIconSides: "2",
plotFillAlpha: "80"
}
},
scrollcolumn2d: {
chart: {
showLegend: "1",
legendIconSides: "4",
showCanvasBase: "0",
canvasBaseDepth: "0",
showShadow: "0",
adjustDiv: "1",
flatScrollBars: "1",
scrollShowButtons: "0",
scrollheight: "10",
scrollColor: "#EBEBEB"
}
},
scrollline2d: {
chart: {
showShadow: "0",
adjustDiv: "1",
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
legendIconSides: "2",
flatScrollBars: "1",
scrollShowButtons: "0",
scrollheight: "10",
scrollColor: "#EBEBEB",
drawCrossLine: "1",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
scrollarea2d: {
chart: {
showShadow: "0",
adjustDiv: "1",
lineThickness: "2",
drawAnchors: "0",
showLegend: "1",
legendIconSides: "2",
flatScrollBars: "1",
scrollShowButtons: "0",
scrollheight: "10",
scrollColor: "#EBEBEB"
}
},
scrollstackedcolumn2d: {
chart: {
showLegend: "1",
legendIconSides: "4",
flatScrollBars: "1",
scrollShowButtons: "0",
scrollheight: "10",
scrollColor: "#EBEBEB"
}
},
scrollcombi2d: {
chart: {
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
flatScrollBars: "1",
scrollShowButtons: "0",
scrollheight: "10",
scrollColor: "#EBEBEB",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
scrollcombidy2d: {
chart: {
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
flatScrollBars: "1",
scrollShowButtons: "0",
scrollheight: "10",
scrollColor: "#EBEBEB",
drawCustomLegendIcon: "0",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
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"
}]
}
},
bulb: {
chart: {
is3D: "0",
placeValuesInside: "1",
valueFont: "Source Sans Pro"
}
},
cylinder: {
chart: {
cylRadius: "50",
cylYScale: "13"
}
},
hled: {
chart: {
ledGap: "0",
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}",
valueAbovePointer: "1"
}
},
thermometer: {
chart: {
use3DLighting: "0",
manageResize: "1",
autoScale: "1",
showGaugeBorder: "1",
gaugeBorderAlpha: "40",
placeTicksInside: "0",
autoAlignTickValues: "1",
minortmnumber: "0",
majorTMHeight: "8",
majorTMAlpha: "50"
}
},
vled: {
chart: {
ledGap: "0",
showGaugeBorder: "0",
setAdaptiveMin: "1",
adjustTM: "1",
placeTicksInside: "0",
autoAlignTickValues: "1",
minortmnumber: "0",
majorTMHeight: "8",
majorTMAlpha: "50"
}
},
realtimearea: {
chart: {
showLegend: "1",
legendIconSides: "2"
}
},
realtimecolumn: {
chart: {
showLegend: "1",
legendIconSides: "2"
}
},
realtimeline: {
chart: {
lineThickness: "2",
anchorRadius: "4",
showLegend: "1",
legendIconSides: "2",
anchorHoverEffect: "1",
anchorHoverRadius: "4",
anchorBorderHoverThickness: "1.5",
anchorBgHoverColor: "#FFFFFF",
legendIconBorderThickness: "1"
}
},
realtimestackedarea: {
chart: {
showLegend: "1",
legendIconSides: "2"
}
},
realtimestackedcolumn: {