Till version 4.1 GA Enterprise edition the charting engine provided by default Helical Insight Community Edition is D3 and C3 charts (except table, crosstab, polar, radar and map). We have by default many UI driven customization options. Anyhow, there will be few requirements which cannot be accomplished with help of default properties. In such cases, we can use ‘JS Editor’ and ‘CSS Editor’ options to achieve that requirement. We can go to respective website of C3 and other charts and find out their API, and via JSeditor we can also trigger the default values of these API.

We can use 4 life cycle events for the report to customize the charts depending on the requirement i.e.

  1. Pre-Execution
  2. Pre-Fetch
  3. Post-Execution
  4. Post-Fetch

hi_container :

This is Javascript object which contains the all adhoc report information based on different report visualizations like chart,table,crosstab etc.

 To get the value of “hi_container” end user need to firstly generate the report visualization by connecting to metadata and by adding minimum one column to report area whereas “hi_container” values will differ based on the selected report visualization.

To see the hi_container , open browser console write as shown below :

  1. Pre-Execution :
    This event will be called before adhoc report starts the actual report operation. It includes the different report configurations/visualization options like row count,sorting etc. It will be executed before report generation for different report configurations.
    Use case : The tabular report changing showing default 50 rows instead of 10

    Apply below Pre-Execution script :

    hi_container.set("preExecution",function(c){
    var viz_Options = c.get("viz_Options");
    viz_Options["rowCount"] = [50,100,150,200,250];
    c.set("viz_Options",viz_Options);
    
    });
    

    After Injecting the code , the default page numer has been changed to 50.

  2. PreFetch : This event will be called just before adhoc report send the formdata or request data to the backend for fetching the response data.With this event we can prepare formdata as per requirement and using prefetch event we can send the formdata for
    ex. Set the sample value to 5 etc.

    hi_container.set("preFetch",function(c){
      var formData = c.get("requestData");
          formData.sample = 5;
     
      
     console.log(formData); c.set("requestData",formData);
        
    });
    

  3. PostFetch :This event will be called just after adhoc report receives the reporting data from the backend. On reporting data we can change apply DB function or we can set the data for specific column. With post fetch we can set/change the report configuration , request data and response data can be
    changed.Adding Total ROW for table :

    hi_container.set("postFetch",function(c){   
    var responseData = c.get("responseData");   
    var measure1 = 0;   
    for(var i=0;i<responseData.data.length;i++){ 	
    measure1 += responseData.data[i].emp_age; 	
    var fullSumMeasure1 = measure1;  
     }   
    responseData.data.push({employee_name: "TOTAL", emp_age: fullSumMeasure1});   c.set("responseData",responseData); 
    });
    

  4. Post Execution : Removing blue band on hover for table
    This event will be called when report is rendered. With postexecution event we can change the visualization of report along with report configuration, request data and response data can be changed.We can change the css and styling of report using postexecution event based on the html component class and id.
    Default table with blue band on hover

    Apply below PostExecution script to remove blue band on hover :

    hi_container.set("postExecution", function () {
    
    const element = document.querySelector('#chart');
      if (element.classList.contains("table-hover")) {
        element.classList.remove("table-hover");
    
      }
        
    });

Helical Insight’s self-service capabilities is one to reckon with. It allows you to simply drag and drop columns, add filters, apply aggregate functions if required, and create reports and dashboards on the fly. For advanced users, the self-service component has ability to add javascript, HTML, HTML5, CSS, CSS3 and AJAX. These customizations allow you to create dynamic reports and dashboards. You can also add new charts inside the self-service component, add new kind of aggregate functions and customize it using our APIs.
Helical Insight’s self-service capabilities is one to reckon with. It allows you to simply drag and drop columns, add filters, apply aggregate functions if required, and create reports and dashboards on the fly. For advanced users, the self-service component has ability to add javascript, HTML, HTML5, CSS, CSS3 and AJAX. These customizations allow you to create dynamic reports and dashboards. You can also add new charts inside the self-service component, add new kind of aggregate functions and customize it using our APIs.
Helical Insight, via simple browser based interface of Canned Reporting module, also allows to create pixel perfect printer friendly document kind of reports also like Invoice, P&L Statement, Balance sheet etc.
Helical Insight, via simple browser based interface of Canned Reporting module, also allows to create pixel perfect printer friendly document kind of reports also like Invoice, P&L Statement, Balance sheet etc.
If you have a product, built on any platform like Dot Net or Java or PHP or Ruby, you can easily embed Helical Insight within it using iFrames or webservices, for quick value add through instant visualization of data.
If you have a product, built on any platform like Dot Net or Java or PHP or Ruby, you can easily embed Helical Insight within it using iFrames or webservices, for quick value add through instant visualization of data.
Being a 100% browser-based BI tool, you can connect with your database and analyse across any location and device. There is no need to download or install heavy memory-consuming developer tools – All you need is a Browser application! We are battle-tested on most of the commonly used browsers.
Being a 100% browser-based BI tool, you can connect with your database and analyse across any location and device. There is no need to download or install heavy memory-consuming developer tools – All you need is a Browser application! We are battle-tested on most of the commonly used browsers.
We have organization level security where the Superadmin can create, delete and modify roles. Dashboards and reports can be added to that organization. This ensures multitenancy.
We have organization level security where the Superadmin can create, delete and modify roles. Dashboards and reports can be added to that organization. This ensures multitenancy.
We have organization level security where the Superadmin can create, delete and modify roles. Dashboards and reports can be added to that organization. This ensures multitenancy.
We have organization level security where the Superadmin can create, delete and modify roles. Dashboards and reports can be added to that organization. This ensures multitenancy.
A first-of-its-kind Open-Source BI framework, Helical Insight is completely API-driven. This allows you to add functionalities, including but not limited to adding a new exporting type, new datasource type, core functionality expansion, new charting in adhoc etc., at any place whenever you wish, using your own in-house developers.
A first-of-its-kind Open-Source BI framework, Helical Insight is completely API-driven. This allows you to add functionalities, including but not limited to adding a new exporting type, new datasource type, core functionality expansion, new charting in adhoc etc., at any place whenever you wish, using your own in-house developers.
It handles huge volumes of data effectively. Caching, Pagination, Load-Balancing and In-Memory not only provides you with amazing experience, but also and does not burden the database server more than required. Further effective use of computing power gives best performance and complex calculations even on the big data even with smaller machines for your personal use. Filtering, Sorting, Cube Analysis, Inter Panel Communication on the dashboards all at lightning speed. Thereby, making best open-source Business Intelligence solution in the market.
It handles huge volumes of data effectively. Caching, Pagination, Load-Balancing and In-Memory not only provides you with amazing experience, but also and does not burden the database server more than required. Further effective use of computing power gives best performance and complex calculations even on the big data even with smaller machines for your personal use. Filtering, Sorting, Cube Analysis, Inter Panel Communication on the dashboards all at lightning speed. Thereby, making best open-source Business Intelligence solution in the market.
With advance NLP algorithm, business users simply ask questions like, “show me sales of last quarter”, “average monthly sales of my products”. Let the application give the power to users without knowledge of query language or underlying data architecture
With advance NLP algorithm, business users simply ask questions like, “show me sales of last quarter”, “average monthly sales of my products”. Let the application give the power to users without knowledge of query language or underlying data architecture
Our application is compatible with almost all databases, be it RDBMS, or columnar database, or even flat files like spreadsheets or csv files. You can even connect to your own custom database via JDBC connection. Further, our database connection can be switched dynamically based on logged in users or its organization or other parameters. So, all your clients can use the same reports and dashboards without worrying about any data security breech.
Our application is compatible with almost all databases, be it RDBMS, or columnar database, or even flat files like spreadsheets or csv files. You can even connect to your own custom database via JDBC connection. Further, our database connection can be switched dynamically based on logged in users or its organization or other parameters. So, all your clients can use the same reports and dashboards without worrying about any data security breech.
Our application can be installed on an in-house server where you have full control of your data and its security. Or on cloud where it is accessible to larger audience without overheads and maintenance of the servers. One solution that works for all.
Our application can be installed on an in-house server where you have full control of your data and its security. Or on cloud where it is accessible to larger audience without overheads and maintenance of the servers. One solution that works for all.
Different companies have different business processes that the existing BI tools do not encompass. Helical Insight permits you to design your own workflows and specify what functional module of BI gets triggered
Different companies have different business processes that the existing BI tools do not encompass. Helical Insight permits you to design your own workflows and specify what functional module of BI gets triggered