devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
33 lines (32 loc) • 1.03 kB
JavaScript
/**
* DevExtreme (viz/tree_map/common.js)
* Version: 18.1.3
* Build date: Tue May 15 2018
*
* Copyright (c) 2012 - 2018 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
var _patchFontOptions = require("../core/utils").patchFontOptions;
exports.buildRectAppearance = function(option) {
var border = option.border || {};
return {
fill: option.color,
opacity: option.opacity,
stroke: border.color,
"stroke-width": border.width,
"stroke-opacity": border.opacity,
hatching: option.hatching
}
};
exports.buildTextAppearance = function(options, filter) {
return {
attr: options["stroke-width"] ? {
stroke: options.stroke,
"stroke-width": options["stroke-width"],
"stroke-opacity": options["stroke-opacity"],
filter: filter
} : {},
css: _patchFontOptions(options.font)
}
};