The label names on X axis not appearing fully

Hello Team Helical,

I am using Helical Insight 3.1 Enterprise Edition. On X axis it is showing the names but at many places the names are really long and it is not showing fully all the names. I would like to show the names fully. Please help.

For your reference you can see below image where full name is not appearing and it is getting cut.

Thank You
Harika

1 Like

Hello Harika,

There are 2 steps which you can take
(i) Axis Tick Rotation customization property: Using this property you can rotate the angle in which the text is appearing. Hence if you change it to 45 or 90 degree it will not overlap with the other text, and the chances of cutting it will decrease.

(ii) There is another functionality called Multiline which you can enable, this will allow the name to appear in multiple lines hence the chances of appearing getting cut will decrease. For the same you can inject the below code in the JS Editor while creating the adhoc report

Multiline :

hi_container.set("preExecution",function(c){
var viz_Options = c.get("viz_Options");

viz_Options.chartOptions["axis"] = {
x: {
tick: {
multiline : true
}
}
},
c.set("viz_Options",viz_Options);
});

Thank You
Team Helical