import { __assign } from "tslib";
import { get } from '@antv/util';
export var DEFAULT_TOOLTIP_OPTIONS = {
showTitle: false,
shared: true,
showMarkers: false,
customContent: function (x, data) { return "".concat(get(data, [0, 'data', 'y'], 0)); },
containerTpl: '
',
itemTpl: '{value}',
domStyles: {
'g2-tooltip': {
padding: '2px 4px',
fontSize: '10px',
},
},
};
/**
* 默认配置项
*/
export var DEFAULT_OPTIONS = {
appendPadding: 2,
tooltip: __assign({}, DEFAULT_TOOLTIP_OPTIONS),
animation: {},
};
//# sourceMappingURL=constants.js.map