Hello Team,
I am using Helical insight 3.1 Enterprises Edition. I have created an axis chart, however I the axis charts are having very faint dotted background lines. I would like to remove them. Please help
Thank You
Kevin
Hello Team,
I am using Helical insight 3.1 Enterprises Edition. I have created an axis chart, however I the axis charts are having very faint dotted background lines. I would like to remove them. Please help
Thank You
Kevin
Hello Kevin,
You can create the ad-hoc axis chart report using Ad-hoc Editor interface. Go to Editor tab, and paste the below code in JSEditor. This will remove the the horizontal lines
hi_container.set("preExecution",function(c){
var viz_Options = c.get("viz_Options");
viz_Options.chartOptions.grid = {
y: {show:false}
}
c.set("viz_Options",viz_Options);
});
Thank You
Team Helical