123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- "use strict";
- var Util = require('../../util/common');
- var KEYWORDS_PERCENT = {
- min: 0,
- median: 0.5,
- max: 1
- };
- var GuideBase = /*#__PURE__*/function () {
- var _proto = GuideBase.prototype;
- _proto._initDefaultCfg = function _initDefaultCfg() {};
- function GuideBase(cfg) {
- this._initDefaultCfg();
- Util.deepMix(this, cfg);
- }
- _proto._getNormalizedValue = function _getNormalizedValue(val, scale) {
- var rst;
- if (Util.isNil(KEYWORDS_PERCENT[val])) {
- rst = scale.scale(val);
- } else {
- rst = KEYWORDS_PERCENT[val];
- }
- return rst;
- };
- _proto.parsePercentPoint = function parsePercentPoint(coord, position) {
- var xPercent = parseFloat(position[0]) / 100;
- var yPercent = parseFloat(position[1]) / 100;
- var start = coord.start;
- var end = coord.end;
- var width = Math.abs(start.x - end.x);
- var height = Math.abs(start.y - end.y);
- var x = width * xPercent + Math.min(start.x, end.x);
- var y = height * yPercent + Math.min(start.y, end.y);
- return {
- x: x,
- y: y
- };
- };
- _proto.parsePoint = function parsePoint(coord, position) {
- var self = this;
- var xScale = self.xScale;
- var yScales = self.yScales;
- if (Util.isFunction(position)) {
- position = position(xScale, yScales); // position 必须是对象
- } // 如果数据格式是 ['50%', '50%'] 的格式
- // fix: 原始数据中可能会包含 'xxx5%xxx' 这样的数据,需要判断下 https://github.com/antvis/f2/issues/590
- if (Util.isString(position[0]) && position[0].indexOf('%') !== -1 && !isNaN(position[0].slice(0, -1))) {
- return this.parsePercentPoint(coord, position);
- }
- var x = self._getNormalizedValue(position[0], xScale);
- var y = self._getNormalizedValue(position[1], yScales[0]);
- var point = coord.convertPoint({
- x: x,
- y: y
- });
- if (self.limitInPlot) {
- // limit in chart plotRange
- if (x >= 0 && x <= 1 && y >= 0 && y <= 1) {
- return point;
- }
- return null;
- }
- return point;
- }
- /**
- * render the guide component
- * @param {Coord} coord coordinate instance
- * @param {Canvas.Group} group the container
- */
- ;
- _proto.render = function render()
- /* coord,group */
- {};
- _proto.repaint = function repaint() {
- this.remove();
- var coord = this.coord,
- container = this.container,
- canvas = this.canvas;
- if (container && !container.isDestroyed()) {
- this.render(coord, container);
- canvas.draw();
- }
- };
- _proto.remove = function remove() {
- var element = this.element;
- element && element.remove(true);
- };
- _proto.changeVisible = function changeVisible(visible) {
- var self = this;
- self.visible = visible;
- var element = self.element;
- if (!element) return;
- if (element.set) {
- element.set('visible', visible);
- } else {
- element.style.display = visible ? '' : 'none';
- }
- };
- return GuideBase;
- }();
- module.exports = GuideBase;
|