Stop auto formatting of y axis labels

Hello Team Helical,

I am using Helical Insight 3.1 However whenever any chart is created the data formatting on Y axis automatically happens like m, K, M etc.
I would like to stop that since it can become confusing for my end users?

axis-label

Thank You
Vetegoc.

1 Like

Hello Vetegoc,

If you would like to implement the same at the entire application level then you can disable d3.format in H3.js file.

Otherwise in the adhoc report you can put the below code in JS Editor. Then automatically the formatting will be removed.

hi_container.set("preExecution",function(c){

var viz_Options = c.get("viz_Options");
viz_Options.chartOptions["axis"] = {

y:{
tick: {
format: d3.format(',')
}

}
};

c.set("viz_Options",viz_Options);
});

Once done you can see the chart will appear like below.

Thank You
From Team Helical