You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.3 KiB
JavaScript
71 lines
1.3 KiB
JavaScript
3 months ago
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.gridConfig = void 0;
|
||
|
var gridConfig = {
|
||
|
/**
|
||
|
* @description Grid left margin
|
||
|
* @type {String|Number}
|
||
|
* @default left = '10%'
|
||
|
* @example left = '10%' | 10
|
||
|
*/
|
||
|
left: '10%',
|
||
|
|
||
|
/**
|
||
|
* @description Grid right margin
|
||
|
* @type {String|Number}
|
||
|
* @default right = '10%'
|
||
|
* @example right = '10%' | 10
|
||
|
*/
|
||
|
right: '10%',
|
||
|
|
||
|
/**
|
||
|
* @description Grid top margin
|
||
|
* @type {String|Number}
|
||
|
* @default top = 60
|
||
|
* @example top = '10%' | 60
|
||
|
*/
|
||
|
top: 60,
|
||
|
|
||
|
/**
|
||
|
* @description Grid bottom margin
|
||
|
* @type {String|Number}
|
||
|
* @default bottom = 60
|
||
|
* @example bottom = '10%' | 60
|
||
|
*/
|
||
|
bottom: 60,
|
||
|
|
||
|
/**
|
||
|
* @description Grid default style configuration
|
||
|
* @type {Object}
|
||
|
* @default style = {Configuration Of Class Style}
|
||
|
*/
|
||
|
style: {
|
||
|
fill: 'rgba(0, 0, 0, 0)'
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* @description Grid render level
|
||
|
* Priority rendering high level
|
||
|
* @type {Number}
|
||
|
* @default rLevel = -30
|
||
|
*/
|
||
|
rLevel: -30,
|
||
|
|
||
|
/**
|
||
|
* @description Grid animation curve
|
||
|
* @type {String}
|
||
|
* @default animationCurve = 'easeOutCubic'
|
||
|
*/
|
||
|
animationCurve: 'easeOutCubic',
|
||
|
|
||
|
/**
|
||
|
* @description Grid animation frame
|
||
|
* @type {Number}
|
||
|
* @default animationFrame = 50
|
||
|
*/
|
||
|
animationFrame: 30
|
||
|
};
|
||
|
exports.gridConfig = gridConfig;
|