diff --git a/src/base/single/label/abstract.label.js b/src/base/single/label/abstract.label.js index d5a377fae..494824051 100644 --- a/src/base/single/label/abstract.label.js +++ b/src/base/single/label/abstract.label.js @@ -211,6 +211,7 @@ var o = this.options; var adaptLayout = "bi.vertical_adapt"; var json = this._createJson(); + json.textAlign = "left"; if (BI.isNumber(o.width) && o.width > 0) { if (BI.isNumber(o.textWidth) && o.textWidth > 0) { json.width = o.textWidth; @@ -251,6 +252,7 @@ return; } if (BI.isNumber(o.height) && o.height > 0) { // 2.3 + json.textAlign = o.textAlign; this.text = BI.createWidget(BI.extend(json, { element: this, hgap: o.hgap, @@ -314,6 +316,7 @@ "line-height": (o.height - (o.vgap * 2)) / BI.pixRatio + BI.pixUnit }); } + json.textAlign = o.textAlign; this.text = BI.createWidget(BI.extend(json, { // 2.6 element: this, hgap: o.hgap,