Hello Team Helical,
I have a line chart. I used the following script in JS editor to reduce the number of culling on X-axis. It is not showing any change. Please help.
hi_container.set(“preExecution”,function(c){
var viz_Options = c.get(“viz_Options”);
viz_Options.chartOptions = {
axis:{
x: {
tick:{
culling:{
max: 6
}
}
}
}
}
};
c.set(“viz_Options”,viz_Options);
});
Thank you
Linapag