Now, that we have made a dashboard with multiple reports (How To Create Dashboard In Helical Insight CE), we will see how we can change the look and feel of the dashboard by adding color, images etc.

Since the customization is done in an HTML markup, user can easily add any JavaScript functionalities in<script> tag and also can request Ajax calls if required in the dashboard. User can also add any CSS on elements and also can override existing element styles using !important. All the changes should be done in Template.html file.

In this article, we are making few customizations on the Dashboard to make it aesthetically more pleasing. For example:

  1. Changing the background color.
  2. Adding background image.
  3. Changing font size, color etc of the text.

For now the dashboard is looking as shown in the image below.

image1

Starting with changing the heading. See the image below.

image2


As seen in the above image we have made following changes:-

  1. Added a logo which on click will open the Helical Insight site.
  2. Changed the font color of the heading.

In the below code snippet check the changes made.

<div class="col-sm-12 travel_expense_dashboard">
    <div class="row" id="heading">
	<div class="col-sm-2" id="home_image">
	    <a href="https://www.helicalinsight.com/">
		<img width="80px" height="50px" src="getExternalResource.html?path=Template Folder/logo-hi.png" />
	    </a>
	</div>
        <div class="col-sm-10" >
	    <h1 style="text-align:center;padding-right:20%">Travel Expense Distribution Report</h1>
        </div>
    </div>
    - - - - - - - 
    - - - - - - - 
</div>

See the description below for the above code snippet:-

  • Inside the <div> with class travel_expense_dashboard ,where the entire dashboard will be rendered, we have defined a div with an id heading where the dashboard heading will be rendered.
  • Inside heading again there are two <div> tags.
  • One will hold the logo image and another will have text for the dashboard heading.
  • To make our logo image act as link , we will give the image inside the <a> tag and the ‘href’ attribute is the site address.
  • Image is given a particular height and width as per requirement and give the path to the logo image in the syntax:-
  • <img width="80px" height="50px" src="getExternalResource.html?path=Template Folder/logo-hi.png" />
    

    Here, inside ‘src’ attribute give the path where you have put the image.

    Note:- You need not give the full path of the image inside your PC, just the path of the file inside hi-repository.

    In our case it is present inside Template folder with name logo-hi.png thus the path will be Template Folder/logo-hi.png.

    Now apply CSS on the ID and CLASS inside <style> tag in Template.Html file as shown below:-

    #heading {
        background-color: #ffffff; //Background is to remain white
        padding: 10px;  
        color: #90c601;        //Color of the text is given hex color code.
    }

    We have given some inline CSS as well to the <h1> tag as shown in the code below.

    <div class="row" id="heading">
        <div class="col-sm-2" id="home_image">
            <a href="https://www.helicalinsight.com/">
                <img width="80px" height="50px"  src="getExternalResource.html?path=Template Folder/logo-hi.png" />
    	</a>
        </div>
        <div class="col-sm-10" >
            <h1 style="text-align:center;padding-right:20%" >Travel Expense Distribution Report</h1> 
        </div>
    </div>
    

    Now, we will be giving border to the 2 reports(Bar, table) and will be changing their background color by giving the appropriate CSS on the corresponding class reportsDiv.
    The HTML for the two reports is as follows:-

    <div class="row reportsDiv">
        <div class="col-sm-6" id="tableChart"></div>
        <div class="col-sm-6" id="barChart"></div>
    </div>
    

    Now giving CSS to the defined ids.
    To give border simply add CSS on the class reportsDiv in the style tag.

    <style>
         - - - - - 
         - - - - - 
        .reportsDiv {
            background: #f9f9f9;    // To give background color to both the reports.
            border: solid 2px #498ef2;  // Give border to the entire div with color
            border-radius:4px;        // Give border some radius.
        }
        - - - - - - 
        - - - - - -
    </style>
    

    image3

    In the above figure, the table chart is touching the border at the top. We can give somepadding on the IDtableChart defined for the table. See the following code snippet where we will give CSS on the IDtableChart for giving the padding at the top.

    <style>
        - - - - - 
        - - - - - 
        tableChart#tableChart {
            padding-top:25px;
        }
        - - - - - 
        - - - - -
    </style>

    Now save the file and run the report to see the following output.

    image5

    You can also give a back ground image to the dashboard.

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