radar:{
name:{
textStyle: {
lineHeight: 16,
},
formatter:(text) => {
let textClone = text;
let strlength = text.length;
if (strlength % 6 != 0) {
textClone = textClone.replace(/\S{6}/g, function(match) {
return match + '\n';
});
} else {
textClone = textClone.replace(/\S{6}/g, function(match) {
return match + '\n';
});
strlength = textClone.length;
textClone = textClone.substring(0, strlength - 1);
}
return textClone;
}
}
}
大功告成~