Hello Team.
I am using Helical Insight version 3.1. I am using line chart, however I would like to decrease the size of the point in the multi line chart, i tried the below code but no luck
hi_container.set("preExecution",function(c){
var viz_Options = c.get("viz_Options");
viz_Options.chartOptions.point = {
r: 1
}
c.set("viz_Options",viz_Options);
});