Knowledge Base
cancel
Showing results for 
Search instead for 
Did you mean: 

Knowledge Base Articles

Custom UI Colours (Instead Of Yellow)

Download: For V7.0 - V7.1, For V7.2 and V7.3, For V7.4 Plugin allows changes sisense yellow color to any color you wish. STEPS STEP 1 - ADD THE PLUGIN Download the attachment and unzip the contents into your C:\Program Files\Sisense\PrismWeb\plugins...

intapiuser by Community Team Member
  • 263 Views
  • 0 comments
  • 0 kudos

Reverse Y-Axis Of A Chart

Paste the following code into the widget script to reverse the Y-Axis.Instead of the lower number at the bottom of the chart, it will be at the top.widget.on('processresult', function(se,ev){ ev.result.yAxis[0].reversed = true; })If you have a sec...

intapiuser by Community Team Member
  • 401 Views
  • 0 comments
  • 0 kudos

Filter Header

Download: Filter HeaderIntroduction This article explains how to add a report header as a plugin in Sisense.Purpose/BenefitsEven though dashboard filters are displayed on the right hand side of each dashboard, some user prefer to see the selected fil...

intapiuser by Community Team Member
  • 505 Views
  • 0 comments
  • 0 kudos

Widget Auto Labelling Plugin

IntroductionThe following article describes the steps needed to implement the “auto-labelling” plugin.Business CaseIn some cases such as when embedding dashboards and widgets, or integrating them in a presentation, it is sometimes hard to know what f...

intapiuser by Community Team Member
  • 302 Views
  • 0 comments
  • 0 kudos

Sharing All System's Dashboards With A Specific User

Sometimes, for example when adding a new admin user, you might want to share all of the dashboards in the system with that user. In order to do that, you can use the following Python script: import requests import time import json user_name = 'omer....

intapiuser by Community Team Member
  • 270 Views
  • 0 comments
  • 0 kudos

Creating One Total In A Stacked Column

When choosing  “Stacked Bar Chart” and select “totals” and we have positive and negative values, we get two totals. Totals for the positive numbers at the topTotals for the negative values at the bottom.If we want to get only one total that sums both...

intapiuser by Community Team Member
  • 314 Views
  • 0 comments
  • 0 kudos

Customize Value Labels

Download: Custom Value Labels Introduction This article explains how to customize how value labels are displayed on common chart types. Purpose/Benefits When you have limited screen real estate, you may see your value labels overlap each other.   A...

intapiuser by Community Team Member
  • 1215 Views
  • 0 comments
  • 0 kudos

Automatic Carousel Filtering

Blox Carousels are great, but sometimes you want the carousel to automatically filter when the "previous" or "next button" is clicked.The easiest way to do this is to add a standard blox filter button on each blox slide which we will hide: through th...

intapiuser by Community Team Member
  • 480 Views
  • 0 comments
  • 0 kudos

Wiser Clear All Filters Plugin

WiserClearAllFiltersPlugin on GitHubDownload: WiserClearAllFiltersPlugin (click the latest .zip) PURPOSE/BENEFITSAfter publishing a dashboard with preset filters to a user, the user may further interact with a dashboard and change the filters being s...

intapiuser by Community Team Member
  • 376 Views
  • 0 comments
  • 0 kudos

Pivot2: "Add Sparklines In Pivots" Re-Implemented

Introduction This plugin was created to allow dashboard designers to create sparklines within a pivot table. This plugin currently supports line, area, and column charts as the sparklines. Steps The following steps will walk through the process of ...

intapiuser by Community Team Member
  • 1211 Views
  • 0 comments
  • 0 kudos

Remove Columns That Contain All Nulls From Pivot Table

ApplicationUse this script in a pivot table where a column may have all NULL values to clean up the UI.The irrelevant columns are dropped after being loadedwidget.on('ready', function(){ var tlen = parseInt($('.p-container thead tr td').last().pre...

intapiuser by Community Team Member
  • 440 Views
  • 0 comments
  • 0 kudos

Formatting Pivot Header Rows And Columns Via CSS

Introduction Use this script to format the header rows and columns of a Pivot table. Instructions Create a Pivot table > Save It > Go back to the Edit Window > Edit Script. widget.on("ready", function(w, args) { //header columns var $ps1 =...

intapiuser by Community Team Member
  • 1543 Views
  • 0 comments
  • 0 kudos

Dynamic Offset For Date Filters

Introduction:The following script will allow you to get the functionality of "Last x days" for any chosen date in the dashboard filter.Steps:1. create a dashboard filter of type "days" and set it up to be a radio button:2. Paste the following in the ...

intapiuser by Community Team Member
  • 697 Views
  • 0 comments
  • 0 kudos

Add Additional Tabs To Sisense Header Row

This can not be implemented using Header JS API   Downloads Sisense version 7: addButtons-v7.zipSisense version 6: addButtons.zip Introduction This article explains how to add additional links to the navigation bar, using a plugin in Sisense. Purpos...

intapiuser by Community Team Member
  • 572 Views
  • 0 comments
  • 0 kudos

KPI Toggle - Display Widgets By Selecting KPIs

Version 1.2ChallengeCreating a single dashboard for an audience with diverse requirements is challenging to do because as widgets are added focus is lost. Information overload is evident as more widgets are added. Users can't select the KPIs that are...

intapiuser by Community Team Member
  • 439 Views
  • 0 comments
  • 0 kudos

Hide The Lines In A Pivot Table

The need is to hide the lines in the pivot as shown here:here is the code to do it:widget.on('ready', function(w, args) { $('.p-container .p-fixed-cols, .p-container .p-fixed-corner',element).css('border-right','0px solid'); });

intapiuser by Community Team Member
  • 471 Views
  • 0 comments
  • 0 kudos

Zoomable Line Chart (Highcharts)

Download: Custom HighchartIntroduction This article explains how to import a zoomable line chart from Highcharts as a plugin in Sisense.Purpose/BenefitsIf you go to http://www.highcharts.com/demo, there are dozens of examples of how to implement High...

intapiuser by Community Team Member
  • 659 Views
  • 0 comments
  • 0 kudos

Quadrant Analysis Plugin

 Download: Quadrants Chart IntroductionThis article will explain how to change a Scatter Chart to a Four Quadrants Chart. It is an extension to the existing Scatter Chart and can only be applied to that widget.Business CaseThe Four Quadrants chart ca...

intapiuser by Community Team Member
  • 382 Views
  • 0 comments
  • 0 kudos
Labels