Disable sorting in table

Hello Team,

I am using Helical Insight enterprise edition 4.1 GA. In the tabular version of the report I would like to disable sorting?

Thank You,
Sesa.

Hello Sesa,

Open the report in edit mode. Put the below code

hi_container.set("preExecution",function(c){
      var viz_Options = c.get("viz_Options");
      viz_Options["sorting"] = false;
       viz_Options["multiSort"] = false;
       c.set("viz_Options",viz_Options);
})

Here sorting option wont be displayed beside the columns.

image

Thank You,
Helical Insight.