Is it possible to have Sub Charts in Axis Charts?

Hi Team Helical,

I am using Helical Insight 3.0. There are various axis charts but I would like to have a sub chart kind of thing which will allow me to select any specific area and accordingly zoom in zoom out operations?

Thank You

Hello Anu,
Yes, this is possible
In the created report open in edit mode and add the below code in the JS editor portion of it.

hi_container.set("preExecution",function(c){
          var viz_Options = c.get("viz_Options");
          viz_Options.chartOptions["subchart"] = {
          show:true
          };
          c.set("viz_Options",viz_Options);
        });

This code will work on any axis charts. As you can see in the below image the created chart is having one more sub chart which also has region selector for zoom in zoom out and other operations as well.

image

Thank You.
From Team Helical