In this article you will learn about input controls in Helical Insight. The input controls are predefined structures where user gives certain input and based on that output is generated, for example generating a chart for a date range. Mainly, input controls are used in dashboard, charts, reports. In Helical Insight there are certain components available which can be used directly and if not then there is provision to add custom input control based on your business requirement using a script or an HTML.

Following Components are available for use :

  • Select
  • Select with search
  • Date Picker
  • Date-Range Picker
  • Button
  • Charts
  • Custom

All the components have some basic and common configuration. The configuration options are listed in the table below

Other BI ToolBI Framework
Data ConnectionsData sources they support is limited. If a new data source type is introduced, you will have to depend on the BI tool provider to supply a new connector for it.
With our BI framework, you can use datasource APIs to extend this functionality in-house. This way, you can start fetching data from any new data source without delay or dependency.
New charting typeExisting BI tools, in their self-service component, provide certain charting options. However,addition of new chart types which could be reused is not possible.With our BI framework, you can incorporate newer charts to the adhoc component. Any kind of java scripting chart can be added. This can be reused with any data set by any user.
New Exporting TypeMost BI tools offer exporting of reports and/or dashboard in PDF and image formats. What if you need it in SAS compatible formats, EDI format etc.? Not possible.By default, Helical Insight provides support for CSV, PDF, Image formats etc. Additionally, you can use the exporting APIs to add any kind of exporting type which your business demands.
Data RepresentationTraditional BI tools do not offer much in terms of data representation. They might offer reports, dashboards and geographical dashboards.With our BI framework, not only can you develop traditional reports, dashboards, geomaps etc., you can also develop ones like what-if analysis, mashups, infographs, timelines etc.
Charts customization and AnimationTraditional BI tool offers some level of chart optimization or customization like color, size etc.In Helical Insight, adhoc components and dashboard designers have placeholders to add javascript, HTML, CSS and AJAX. Hence you can perform any kind of customization and animation.
Email SchedulingMost BI tools support emailing of reports, triggered on time basis. What if you want it to be triggered upon another action such as login or upon touching a value?With email API, you can schedule for implement and trigger emailing of reports whenever you want. It could be time-based or action-based or value-based.
New functionality at backendIf a client wants to add a new core functionality at the back-end, like adding a machine learning layer or adding a new caching layer, it is not possible with traditional BI tools.With Helical Insight, the client is empowered to add functionalities at the back-end using Java. There is no need to depend on vendor's long release cycles or pay hefty sums to implementation partners.
White LabelingTraditional BI tools offer very limited white labeling options like header, footer, login and logout screens.With our BI framework, you can customize absolutely everything from header, footer, notifications, file repository, navigation, context menu etc.
WorkflowNone of the existing BI tools provide an integrated workflow engine.Helical Insight has an integrated workflow engine, empowering you to create business-specific workflow. Call different modules of different work. Create your own functional modules too.
Creation and Consumption of solutionTraditional BI tools have different components for reports creation, uploading, plug-ins, PDF extracting etc.
With Helical Insight, creation and consumption of solution is fully browser-based and accessible from anywhere, anytime. No need to download multiple heavy softwares with their own licensing costs


Select Component

Select component can be used by using type : “select”. It has two modes single and multiple, which can be set via options, which are explained below:

Sr NoCustomization NameSubCategoryJavaScript CodeCSS Style Codeboth code mandatory
1Header Color Change$('th').css({"background-color": "plum"});.table > thead > tr > th{
background-color: plum;
}
no, you can use either
2Row BandingRemove$('table').removeClass('table-striped');no
3Background Color Change$("table").on("loaded.rs.jquery.bootgrid", function(){
$('tbody > tr').css({"background-color": "grey"});
});
.table > tbody > tr > td{
background-color: thistle;
}
yes
4Table Borderremove table border,
define width size,
define color
.table > tbody > tr > td, .table > thead > tr > th {
border: none;
border-bottom: 1px solid #DDD;
}
/** allows to remove the table borders, define its width size, define its color **/
no
5Table Partitionremovehi_container.set("postExecution", function () {
$('table').removeClass('table-bordered');
});
.table > tbody > tr > td, .table > thead > tr > th {
border: none;
border-bottom: 1px solid #DDD;
}
either
6Table TextChange color,
Size and font
$('table').css({"color" : "green", "font-size":"15px", "font-family":"Serif"});.table > tbody > tr > td{
color : red;
font-size : 15px;
font-family : Consolas;
}
either
7Row BandingAddOdd:
.table > tbody > tr:nth-child(2n+1)> td, .table-sticky.table-striped > tbody > tr:nth-of-type(2n+1)> td{
background-color: palegreen;
}
either
Even:
.table > tbody > tr:nth-child(2n)>td, .table-sticky.table-striped > tbody > tr:nth-of-type(2n)> td {
background-color: moccasin;
}
8Defining Row CountAdd$("#chart").bootgrid("destroy");
$("#chart").bootgrid({rowCount : 15});
script
9Column BandingAddodd:-
.table > tbody > tr > td:nth-child(2n+1),
.table > thead > tr > th:nth-child(2n+1){
background-color: yellow;
}

even:-
.table > tbody > tr > td:nth-child(2n),
.table > thead > tr > th:nth-child(2n){
background-color: blue;
}
css / script
10Chess Pattern.table > tbody > tr:nth-child(2n) > td:nth-child(2n),
.table > tbody > tr:nth-child(2n + 1) > td:nth-child(2n + 1){
background:#000;
color: #FFFFFF;
font-weight: bold;
}
css / script
11Shadow to a tableAdd//Table-Shadow
.table { box-shadow: 10px 10px 5px #888888 }
12Heading and Sub-headingAddhi_container.set("postExecution", function () {
$('#main').prepend('

Sub-Heading

');
$('#main').prepend('

Heading

');
});
.heading{
text-align : center;
color: green;
font-size: 20px;
}
.subheading{
text-align : center;
color: green;
font-size: 20px;
}
Yes

Search with Select Component

Select2 component can be used by setting type : “select2”. Similar to select, it has two modes single and multiple, which can be set via options, which are explained below:

Sr NoCustomization NameSub CategoryJavaScript CodeCSS Style Codeboth code mandatory
1Chart Resizingadd$(document).ready(function(){
Hdi.c3chart.resize({ height: 400, width: 900 });
});
no
2Axis label coloradd.c3-axis-x > .tick{
fill:green; }
.c3-axis-y > .tick{
fill: red; }
no
3Axis label colorremove / hide.c3-axis-x > .tick{
fill: none; }
.c3-axis-y > .tick{
fill: none; }
no
3Axis Line Coloradd.c3 .c3-axis-x path, .c3 .c3-axis-x line {
stroke: green;
//stroke: none; - hides axis
}
.c3 .c3-axis-y path, .c3 .c3-axis-y line {
stroke: red;
//stroke: none; - hides axis
}
4Remove Axis Lineremove or Hide.c3 .c3-axis-x path, .c3 .c3-axis-x line {
stroke: none; }
.c3 .c3-axis-y path, .c3 .c3-axis-y line {
stroke: none; }
5Axis Label FormattingAdd.c3-axis-y > .tick {
fill: red;
font-style: italic;
font-family: "Times New Roman";
font-size: 15px;
}
.c3-axis-x > .tick {
fill: green;
font-style: oblique;
font-family: "Times New Roman";
font-size: 15px;
}
// font size, font styles and font size
14Axis Label renamerenamehi_container.set("postExecution", function () {
Hdi.c3chart.axis.labels({
x: 'Destination place',
y: 'Number of Travels'
});
});
15Axis Legend renamerenamehi_container.set("postExecution", function () {
Hdi.c3chart.data.names({
"min_Cost": 'New Name 1',
"Travel Count" : 'Count of Travel'
});
});
6Change BackgroundAddhi_container.set("postExecution", function () {
$('g.c3-chart > g.c3-event-rects').removeAttr('style'); });
g.c3-chart > g.c3-event-rects{
fill:yellow;
}
Yes
7Making Chart Transparenthi_container.set("postExecution", function () {
$('.c3').css('opacity','0.3');
});
No
8Heading and Sub-headingAddhi_container.set("postExecution", function () {
$('#main').prepend('

Sub-Heading

');
$('#main').prepend('

Heading

');
});
.heading{
text-align : center;
color: green;
font-size: 20px;
}
.subheading{
text-align : center;
color: green;
font-size: 20px;
}
Yes
9Change Chart ColorAddhi_container.set("postExecution", function () {
Hdi.c3chart.data.colors({
"Travel Count" : 'Plum'
});
});
10Grid Lines (Y-Axis)Addhi_container.set("postExecution", function () {
Hdi.c3chart.ygrids.add([
{value: 20,class:'grid1', text: 'Minimum'},
{value: 40, class:'grid2',text: 'Maximum'}
]);
}); // customization of the text and the gridlines
.c3-ygrid-line.grid1 line {
stroke: red;
}
.c3-ygrid-line.grid1 text{
fill: red;
font-size: 10px;
}
.c3-ygrid-line.grid2 line {
stroke: green;
}
.c3-ygrid-line.grid2 text{
fill: green;
font-size: 10px;
}
Removehi_container.set("postExecution", function () {
Hdi.c3chart.ygrids.remove([
{value: 26},
]);
});
11Grid Lines (X-Axis)Addhi_container.set("postExecution", function () {
Hdi.c3chart.xgrids.add([
{value: 20,class:'xgrid0', text: 'Minimum'},
{value: 40, class:'xgrid1',text: 'Maximum'},
]);
});
.c3-xgrid-line.xgrid0 line {
stroke: black;
}
.c3-xgrid-line.xgrid0 text {
fill: black;
font-size: 10px;
}

.c3-xgrid-line.xgrid1 line {
stroke: #EFE11A;
}
.c3-xgrid-line.xgrid1 text {
fill: #EFE11A;
font-size: 10px;
}
Grid Lines (X-Axis)Remove1 (Selected)hi_container.set("postExecution", function () {
Hdi.c3chart.xgrids.remove([
{value: 'Chandigarh'},
]);
});
12Highlight RegionAddhi_container.set("postExecution", function () {
Hdi.c3chart.regions.add( {axis: 'x', start: 1, end: 2, class: 'regionX'}),
Hdi.c3chart.regions.add( {axis: 'y', start: 20, end: 40, class: 'regionY'} );
});
// then add the CSS
.c3-region.regionY {
fill: red;
}
.c3-region.regionX {
fill: green;
}
Highlight RegionRemove1 (selected)hi_container.set("postExecution", function () {
Hdi.c3chart.regions.remove(
{classes: ['regionX', 'regionY']}
);
});
13Hide FieldshidesetTimeout(function () {
// data1 will be hidden.
Hdi.c3chart.hide('data1');

// data1 and data2 will be hidden.
Hdi.c3chart.hide(['data1', 'data2']);

// all targets will be hidden.
Hdi.c3chart.hide();

// data1 will be hidden together with its legend.
Hdi.c3chart.hide('data1', {withLegend: true});
});
}, 200);
Hide Fieldshidehi_container.set("postExecution", function () {
Hdi.c3chart.hide("Travel Count");
});
16Set Axis rangeaddhi_container.set("postExecution", function () {
Hdi.c3chart.axis.range({
min: { x: -2, y: -150 }, max: { x: 20, y: 200 }
});
});
17Set Background color and opacityaddhi_container.set("postExecution", function () {
$('g.c3-event-rects').css("fill-opacity", "0.2").css("fill", "yellow");
});
18Data Pointsremovehi_container.set("postExecution", function () {
Hdi.c3chart.unload({ ids: ['Abbas', 'Aliqui'] });
});
19Chart TransformationAddhi_container.set("postExecution", function () {
Hdi.c3chart.transform('bar', 'Travel Count' );
Hdi.c3chart.transform('line', 'Cost of Travel' );
Hdi.c3chart.data.colors({ "Cost of Travel" : '#ff7f0e' ,"Travel Count" : '#2ca02c' });
});
20Axis Tick RotateAddhi_container.set("postExecution", function () {
$('.c3-axis-x .tick text').attr('transform','rotate(-90)').css('text-anchor','end');
});
21Chart ThicknessAdd.c3-line{
stroke-width:5px;
}
22Data Points Color ChangeAdd (conditional basis)Hdi.c3chart.data.colors({
'data1': function(d) {
return (d.value >= 7) ? '#00ff00': '#ff0000';
}
});
23Axis Line ( X & Y axis)Hide.c3 .c3-axis-x path, .c3 .c3-axis-x line { stroke: none; }
.c3 .c3-axis-y path, .c3 .c3-axis-y line { stroke: none; }
24Line Color (line Chart)Add.c3-line{
stroke-width:5px;
stroke: yellow !important;
}
25Chart Transform ContinuouslyChanging charts continuously -

hi_container.set("postExecution", function () {

//set initial chart colour
Hdi.c3chart.data.colors({
'Number of Employees': '#1FAF96'
});

//Map for chart type
var typeMap = {
"1" : "bar",
"2" : "line",
"3" : "area",
"4" : "spline",
"5" : "area-step"
};

//Map for different colors per chart type
var colorMap = {
"1" : "#A9ACE3",
"2" : "#E1A9D6",
"3" : "#84DFED",
"4" : "#EDE588",
"5" : "#8CDA94"
};

var cntr = 1;

function change(){
var changeIt = setInterval(function(){
cntr++;
if(cntr > 5){
cntr = 1;
}

//Change the chart type
Hdi.c3chart.transform(typeMap[cntr]);

//Change the chart color
Hdi.c3chart.data.colors({
'Number of Employees': colorMap[cntr]
});
},1500); //set time to wait before the transform.
};

change();
});

Date Picker and Date-Range Picker

Date Picker and Date-Range Picker components can be selected by using type : “datepicker” and type : “daterangepicker” respectively. Both components have almost identical options and are explained below:

Common Options

Sr NoCustomization NameSub-CategoryJavaScript CodeCSS Style Codeboth code mandatory
1Conditional Formatting

(Applicable for only column)
Addhi_container.set("postExecution", function(){

function checker(table){
[].forEach.call(table.rows, function(row, i){
if (i===0)
return;
[].forEach.call(row.cells, function(cell, i){
var cellData = cell.innerHTML.replace(/,/g , "");
var val = parseInt(cellData);

if(val >= 50000)
cell.style.backgroundColor = 'red';
if(val >= 20000 && val<50000)
cell.style.backgroundColor = 'orange';
if(val < 20000)
cell.style.backgroundColor = 'yellow';
});
});
};

var table = document.querySelectorAll(".table");
[].forEach.call(table, checker);
});
.hi-pvtTotal, .hi-pvtGrandTotal{
background:none !important;
}
require
2Cross Tab HeatMapAddhi_container.set("postExecution", function(){

function Interpolate(start, end, steps, count) {

var s = start,
e = end,
final = s + (((e - s) / steps) * count);
return Math.floor(final);
}

function Color(_r, _g, _b) {
var r, g, b;
var setColors = function(_r, _g, _b) {
r = _r;
g = _g;
b = _b;
};

setColors(_r, _g, _b);
this.getColors = function() {
var colors = {
r: r,
g: g,
b: b
};
return colors;
};
}

function checker(table){
var valArr = [];
var cellData;
var val;
[].forEach.call(table.rows, function(row, i){
if (i===0)
return;
[].forEach.call(row.cells, function(cell, i){
cellData = cell.innerHTML.replace(/,/g , "");
val = parseInt(cellData);
if(!isNaN(val))
valArr.push(val);

valArr.sort(function(a, b){return a-b});
});
});

[].forEach.call(table.rows, function(row, i){
if (i===0)
return;
[].forEach.call(row.cells, function(cell, i){
red = new Color(255, 0, 0),
white = new Color(255, 255, 255),
start = white,
end = red;

cellData = cell.innerHTML.replace(/,/g , "");
val = parseInt(cellData);
var count = 2+valArr.indexOf(val);

var startColors = start.getColors(),
endColors = end.getColors();
var r = Interpolate(startColors.r, endColors.r, valArr.length, count);
var g = Interpolate(startColors.g, endColors.g, valArr.length, count);
var b = Interpolate(startColors.b, endColors.b, valArr.length, count);

if(!isNaN(val))
cell.style.backgroundColor = "rgb(" + r + "," + g + "," + b + ")";

});
});
};

var table = document.querySelectorAll(".table");
[].forEach.call(table, checker);
});
// to not color the totals
// .hi-pvtTotal, .hi-pvtGrandTotal {
// background: none !important;
// }
may require / may not require
3Heading and Sub-headingAddhi_container.set("postExecution", function () {
$('#main').prepend('

Sub-Heading

');
$('#main').prepend('

Heading

');
});
.heading{
text-align : center;
color: green;
font-size: 20px;
}
.subheading{
text-align : center;
color: green;
font-size: 20px;
}
Yes

Extra Options for daterangepicker

Sr NoCustomization NameSub-CategoryJavaScript CodeCSS Style Codeboth code mandatory
1Heading and Sub-headingAddsetTimeout(function () {
d3.select('#chart svg').append('text')
.attr('x', d3.select('#chart svg').node().getBoundingClientRect().width / 2)
.attr('y', 8)
.attr('text-anchor', 'middle')
.attr('id', 'heading')
.text('Gender wise Distribution')
}, 200);
either
2opacity$(document).ready(function(){
$('.c3').css('opacity','0.2') ;
});
3background colorAdd$(document).ready(function(){
$('.c3').css('background','yellow') ;
});
body{
background:#fffacd;
}
either

Date Formats

FormatOutput
MonthM1 2 ... 11 12
MonthMo1st 2nd ... 11th 12th
MonthMM01 02 ... 11 12
MonthMMMJan Feb ... Nov Dec
MonthMMMMJanuary February ... November December
QuarterQ1 2 3 4
Day of MonthD1 2 ... 30 31
Day of MonthDo1st 2nd ... 30th 31st
Day of MonthDD01 02 ... 30 31
Day of YearDDD1 2 ... 364 365
Day of YearDDDo1st 2nd ... 364th 365th
Day of YearDDDD001 002 ... 364 365
Day of Weekd0 1 ... 5 6
Day of Weekdo0th 1st ... 5th 6th
Day of WeekddSu Mo ... Fr Sa
Day of WeekdddSun Mon ... Fri Sat
Day of WeekddddSunday Monday ... Friday Saturday
Day of Week (Locale)e0 1 ... 5 6
Day of Week (ISO)E1 2 ... 6 7
Week of Yearw1 2 ... 52 53
Week of Yearwo1st 2nd ... 52nd 53rd
Week of Yearww01 02 ... 52 53
Week of Year (ISO)W1 2 ... 52 53
Week of Year (ISO)Wo1st 2nd ... 52nd 53rd
Week of Year (ISO)WW01 02 ... 52 53
YearYY70 71 ... 29 30
YearYYYY1970 1971 ... 2029 2030
Week Yeargg70 71 ... 29 30
Week Yeargggg1970 1971 ... 2029 2030
Week Year (ISO)GG70 71 ... 29 30
Week Year (ISO)GGGG1970 1971 ... 2029 2030
AM/PMAAM PM
AM/PMaam pm
HourH0 1 ... 22 23
HourHH00 01 ... 22 23
Hourh1 2 ... 11 12
Hourhh01 02 ... 11 12
Minutem0 1 ... 58 59
Minutemm00 01 ... 58 59
Seconds0 1 ... 58 59
Secondss00 01 ... 58 59
Fractional SecondS0 1 ... 8 9
Fractional SecondSS0 1 ... 98 99
Fractional SecondSSS0 1 ... 998 999
TimezoneZ-07:00 -06:00 ... +06:00 +07:00
TimezoneZZ-0700 -0600 ... +0600 +0700
Unix TimestampX1360013296

Button Components

This component can be accessed by using type: “button”. Using it, one can trigger component update manually, if they don’t want to use listeners. Apart from the common configurations mentioned above, button has one additional configuration and also a different behaviour for executeAtStart which is explained below.

Additional Configuration

OptionFormatDefaultDescription
triggersarray[ ]It must be an array of the name properties used while defining the components. It will trigger update of all the components in the array on click
executeAtStartbooleanFALSEFor button, this specifies if the components specified in triggers are to be updated/initialised after Dashboard.init()

Options

OptionFormatDefaultDescription
displaystring"Submit"The text to be displayed on button
classesstring"btn-primary"Space separated string of classes to be applied to the button, which can be used for styling or custom actions.

Charts Component

This component can be accessed by using type: “chart”. Apart from the common configurations mentioned above, chart has one additional configuration which is explained below.

Additional Configuration

OptionFormatDefaultDescription
Vfobject(required)It must have two keys, namely file and id.

file: The name of the file that contains the information about the chart visualizations

id: The id of the chart from the visualization file, that is to be displayed

Options

OptionFormatDefaultDescription
actionsarray[ ]Creates a custom menu. It must be an array of objects and each object must contain a key and value pair where key will be used as id of the element and value will be used as display value. The objects allow for grouping of controls.

Note: The actions are to be specified manually by the developer.
menuLabelstring'Actions'The label to be used for custom menu

 

Custom Componenets

This component can be accessed by using type: “custom”. This component can be used to write your custom script. This component has a slightly different configuration.

Configuration

OptionFormatDefaultDescription
Namestring(required)This will be used as id for the component and also referencing it in other options
Typestring(required)Type is "custom"
listenersarray[ ]A list of variables on whose change, the customScript will be called.
htmlElementIdstring(required)This is the jQuery selector of the HTML element, where the component is to be appended. Any selector can be used but using an id is preferred. eg: '#myFirstComponent'
executeAtStartbooleanFALSEThis specifies if the component is to be updated/initialised after Dashboard.init()
customScriptfunction(required)This function has two arguments, first is reference to the element (jQuery Object) given in htmlElementId and the second is an object containing the variables specified in listeners with name as key and its value as value.

 

For more Info,
Contact us at : demo@helicalinsight.com

 

 

Leave a Reply

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