123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- import { getFont } from '../../label/labelStyle.js';
- import ZRText from 'zrender/lib/graphic/Text.js';
- var PATH_COLOR = ['textStyle', 'color'];
- var textStyleParams = ['fontStyle', 'fontWeight', 'fontSize', 'fontFamily', 'padding', 'lineHeight', 'rich', 'width', 'height', 'overflow'];
- var tmpText = new ZRText();
- var TextStyleMixin = function () {
- function TextStyleMixin() {}
-
-
- TextStyleMixin.prototype.getTextColor = function (isEmphasis) {
- var ecModel = this.ecModel;
- return this.getShallow('color') || (!isEmphasis && ecModel ? ecModel.get(PATH_COLOR) : null);
- };
-
- TextStyleMixin.prototype.getFont = function () {
- return getFont({
- fontStyle: this.getShallow('fontStyle'),
- fontWeight: this.getShallow('fontWeight'),
- fontSize: this.getShallow('fontSize'),
- fontFamily: this.getShallow('fontFamily')
- }, this.ecModel);
- };
- TextStyleMixin.prototype.getTextRect = function (text) {
- var style = {
- text: text,
- verticalAlign: this.getShallow('verticalAlign') || this.getShallow('baseline')
- };
- for (var i = 0; i < textStyleParams.length; i++) {
- style[textStyleParams[i]] = this.getShallow(textStyleParams[i]);
- }
- tmpText.useStyle(style);
- tmpText.update();
- return tmpText.getBoundingRect();
- };
- return TextStyleMixin;
- }();
- ;
- export default TextStyleMixin;
|