You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
733 B
24 lines
733 B
import { deepAssign } from '../../util';
|
|
export var CROSSHAIR_BASE_DEFAULT_STYLE = {
|
|
tagText: '',
|
|
lineStroke: '#416180',
|
|
lineStrokeOpacity: 0.45,
|
|
lineLineWidth: 1,
|
|
lineLineDash: [5, 5],
|
|
};
|
|
export var LINE_CROSSHAIR_DEFAULT_STYLE = deepAssign({}, CROSSHAIR_BASE_DEFAULT_STYLE, {
|
|
type: 'line',
|
|
tagPosition: 'start',
|
|
tagAlign: 'center',
|
|
tagVerticalAlign: 'bottom',
|
|
});
|
|
export var CIRCLE_CROSSHAIR_DEFAULT_STYLE = deepAssign({}, CROSSHAIR_BASE_DEFAULT_STYLE, {
|
|
type: 'circle',
|
|
defaultRadius: 0,
|
|
});
|
|
export var POLYGON_CROSSHAIR_DEFAULT_STYLE = deepAssign({}, CROSSHAIR_BASE_DEFAULT_STYLE, {
|
|
type: 'polygon',
|
|
defaultRadius: 0,
|
|
startAngle: 0,
|
|
});
|
|
//# sourceMappingURL=constant.js.map
|