| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.titleConfig = void 0;
- var titleConfig = {
- /**
- * @description Whether to display title
- * @type {Boolean}
- * @default show = true
- */
- show: true,
- /**
- * @description Title text
- * @type {String}
- * @default text = ''
- */
- text: '',
- /**
- * @description Title offset
- * @type {Array}
- * @default offset = [0, -20]
- */
- offset: [0, -20],
- /**
- * @description Title default style configuration
- * @type {Object}
- * @default style = {Configuration Of Class Style}
- */
- style: {
- fill: '#333',
- fontSize: 17,
- fontWeight: 'bold',
- textAlign: 'center',
- textBaseline: 'bottom'
- },
- /**
- * @description Title render level
- * Priority rendering high level
- * @type {Number}
- * @default rLevel = 20
- */
- rLevel: 20,
- /**
- * @description Title animation curve
- * @type {String}
- * @default animationCurve = 'easeOutCubic'
- */
- animationCurve: 'easeOutCubic',
- /**
- * @description Title animation frame
- * @type {Number}
- * @default animationFrame = 50
- */
- animationFrame: 50
- };
- exports.titleConfig = titleConfig;
|