cartercjb
02-18-2022ETL
Text Wrap in Bar Charts
I am trying to get the x-axis in the widget to wrap text. I originally thought that this Sisense Support KB (Labels & Legend Sorting In Stacked Charts) would resolve it but it didn't. One reason might be because their scenario is cutting off the text whereas my scenario it does not - it's just too long for my preference.
Any ideas on how to wrap the text?
-Carter
Margin of widget can be adjusted by using below script :
widget.on('processresult', function(se, ev){ ev.result.chart.marginLeft = 150 //update this value based on your requirement });
-Hari