@antv/g2
Version:
the Grammar of Graphics in Javascript
53 lines • 1.97 kB
JavaScript
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Density = void 0;
const d3_path_1 = require("d3-path");
const utils_1 = require("../utils");
const selection_1 = require("../../utils/selection");
/**
* Draw density shape.
*/
const Density = (options, context) => {
const { document } = context;
return (points, value, defaults) => {
const { transform } = value;
const { color: defaultColor } = defaults, rest = __rest(defaults, ["color"]);
const { color = defaultColor } = value;
const [first, ...p] = points;
// todo smooth, hollow
const path = (0, d3_path_1.path)();
path.moveTo(...first);
p.forEach(([x, y]) => {
path.lineTo(x, y);
});
path.closePath();
return (0, selection_1.select)(document.createElement('path', {}))
.call(utils_1.applyStyle, rest)
.style('d', path.toString())
.style('stroke', color || defaultColor) // Always has stroke color.
.style('fill', color || defaultColor)
.style('fillOpacity', 0.4)
.style('transform', transform)
.call(utils_1.applyStyle, options)
.node();
};
};
exports.Density = Density;
exports.Density.props = {
defaultMarker: 'square',
defaultEnterAnimation: 'fadeIn',
defaultUpdateAnimation: 'morphing',
defaultExitAnimation: 'fadeOut',
};
//# sourceMappingURL=density.js.map
;