12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- var MarkerModel = require("./MarkerModel");
- var _default = MarkerModel.extend({
- type: 'markLine',
- defaultOption: {
- zlevel: 0,
- z: 5,
- symbol: ['circle', 'arrow'],
- symbolSize: [8, 16],
-
- precision: 2,
- tooltip: {
- trigger: 'item'
- },
- label: {
- show: true,
- position: 'end',
- distance: 5
- },
- lineStyle: {
- type: 'dashed'
- },
- emphasis: {
- label: {
- show: true
- },
- lineStyle: {
- width: 3
- }
- },
- animationEasing: 'linear'
- }
- });
- module.exports = _default;
|