[Bug] richtext `disableAutoWrapLine: true` not as expected
xiaoluoHe opened this issue · 0 comments
xiaoluoHe commented
Version
none
Link to Minimal Reproduction
none
Steps to Reproduce
const graphics = [];
graphics.push(
VRender.createRichText({
"fontSize": 14,
"fill": "#FF8A00",
"fontFamily": "PingFang SC,Helvetica Neue,Microsoft Yahei,system-ui,-apple-system,segoe ui,Roboto,Helvetica,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol",
"textAlign": "center",
"textBaseline": "middle",
"boundsPadding": [
-1,
0,
-1,
0
],
"visible": true,
"fontWeight": "normal",
"fillOpacity": 1,
"pickable": false,
"lineJoin": "bevel",
"stroke": "#ffffff",
"width": 50,
"height": 40,
"ellipsis": true,
"disableAutoWrapLine": true,
"x": 446.334013251786,
"y": 198.39408125844088,
"angle": 0,
"lineWidth": 0,
"textConfig": [
{
"text": "aluminum1111111\n",
"fontSize": 14,
"fontWeight": "bold",
"fill": "red"
},
{
"text": "1.13%",
"fontSize": 14,
"lineThrough": true,
"underline": true,
"fill": "green"
}
],
"z": 0,
"id": "vrender-component-arc-label-2",
"opacity": 1,
"strokeOpacity": 1
})
);
const stage = new Stage({
container: CONTAINER_ID,
autoRender: true
});
graphics.forEach(g => {
stage.defaultLayer.add(g);
});
Current Behavior
Expected Behavior
Environment
- OS:
- Browser:
- Framework:
Any additional comments?
No response