Browse Source

Merge pull request #931 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit '7b8c371ccd1cb1d37ff0a22e234d0821397a953e':
  BI-45376 fix: 主动控制多行的tooltip滚动条问题
es6
windy 5 years ago
parent
commit
f9ec1ff1dc
  1. 4
      src/base/single/tip/tip.tooltip.js

4
src/base/single/tip/tip.tooltip.js

@ -47,11 +47,11 @@ BI.Tooltip = BI.inherit(BI.Tip, {
hgap: this._const.hgap,
items: BI.map(texts, function (i, text) {
return {
type: "bi.text",
type: "bi.label",
textAlign: "left",
whiteSpace: "normal",
text: text,
height: 18
textHeight: 18
};
})
});

Loading…
Cancel
Save