Size of the point in the multi line chart

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);
});
1 Like

a. Open the below h3.txt and copy the content
H3.txt (11.1 KB)
b. Open h3.js on your server (“…\hi\apache-tomcat-7\webapps\hi-ee\js\vendors”) and replace that content with the text file content.
c. Then the below kind of prefetch scripts can be inserted into the Adhoc JS editor.
For Size of the point in Multi-Line Chart below

hi_container.set("preExecution",function(c){
var viz_Options = c.get("viz_Options");
console.log("chartOptionsss:" ,viz_Options);
viz_Options.chartOptions.point = {
r: 8
}
c.set("viz_Options",viz_Options);
});