123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- import { __extends } from "tslib";
- import ComponentModel from '../../model/Component.js';
- var AxisPointerModel = function (_super) {
- __extends(AxisPointerModel, _super);
- function AxisPointerModel() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- _this.type = AxisPointerModel.type;
- return _this;
- }
- AxisPointerModel.type = 'axisPointer';
- AxisPointerModel.defaultOption = {
-
- show: 'auto',
-
- z: 50,
- type: 'line',
-
-
- snap: false,
- triggerTooltip: true,
- triggerEmphasis: true,
- value: null,
- status: null,
- link: [],
-
-
- animation: null,
- animationDurationUpdate: 200,
- lineStyle: {
- color: '#B9BEC9',
- width: 1,
- type: 'dashed'
- },
- shadowStyle: {
- color: 'rgba(210,219,238,0.2)'
- },
- label: {
- show: true,
- formatter: null,
- precision: 'auto',
- margin: 3,
- color: '#fff',
- padding: [5, 7, 5, 7],
- backgroundColor: 'auto',
- borderColor: null,
- borderWidth: 0,
- borderRadius: 3
- },
- handle: {
- show: false,
-
- icon: 'M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z',
- size: 45,
-
- margin: 50,
-
-
- color: '#333',
- shadowBlur: 3,
- shadowColor: '#aaa',
- shadowOffsetX: 0,
- shadowOffsetY: 2,
-
- throttle: 40
- }
- };
- return AxisPointerModel;
- }(ComponentModel);
- export default AxisPointerModel;
|