Not showing all the names on X axis

Hello Team Helical,

I am using Helical Insight 3.1 Enterprise Edition. On X axis it is showing the names of only limited number of fields and not all the fields. I would like to show the names of all the fields. Please help.

For your reference you can see below image where only limited names are appearing and not all the names.

Thank You
Harika

1 Like

Hello Harika,

Hello. The charts have been designed in such a way that the number of legends on X axis dynamically decrease so that the readability is not affected. If there are a lot of bars and for all the name is shown the X axis will look cluttered and not very readable.

However if you would still like you can inject the below code in the JS Editor while creating the adhoc report, and then on the frontend it will show all the names.

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

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

After putting the above code the chart will appear like below

Thank You
Team Helical