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

Knowledge Base Articles

Reset To Default Filters When Loading Dashboard

Purpose/BenefitSometimes it is convenient to always reset the filters to a default state when opening a dashboard.  This post describes how to achieve this with a little bit of JavaScript.  When users will often be resetting filters to a default stat...

intapiuser by Community Team Member
  • 2603 Views
  • 4 comments
  • 0 kudos

Track Dashboard Usage With Google Analytics

Plugin Overview This plugin registers every page view from your Sisense instance to your Google Analytics account. https://analytics.google.com Configuration You must specify your Google Analytics "tracking ID" by editing the main.js file.By default...

intapiuser by Community Team Member
  • 918 Views
  • 2 comments
  • 0 kudos

Pivot2: "Clickable URL Links In Pivot Rows" Re-Implemented

IntroductionIn some cases you might have a URL’s in your fields in the cube,  this post will show you how to modify URLs placed in rows of a Pivot table into clickable links.Purpose & BenefitsThis will allow you to jump to either internal or external...

intapiuser by Community Team Member
  • 1235 Views
  • 1 comments
  • 0 kudos

Adding A Regression Line To Chart

IntroductionRegression line helps us to predict values of one variable, when given values of another variable.Linear regression assists in predicting trends and improving data analysis.StepsA regression line can be added to all widgets with both y an...

intapiuser by Community Team Member
  • 1095 Views
  • 2 comments
  • 0 kudos

Add Plus Sign To Column Chart Values (Tooltip)

You can accomplish it via JavaScript - you could make the value appear in that format within the data point tooltip of the column chart widget i.e. the box that appears when you hover over the columns.widget.on("beforedatapointtooltip", function (w, ...

intapiuser by Community Team Member
  • 796 Views
  • 3 comments
  • 0 kudos

Add Background Image To Charts

SET THE BACKGROUND OF CHARTS TO AN IMAGEOpen the script editor for a widget, and copy in the following code:widget.on('render', function(sender,event){ // URL to the background Image var imageLink = 'http://siliconangle.com/files/2014/12/BlackWhi...

intapiuser by Community Team Member
  • 1143 Views
  • 2 comments
  • 1 kudos

Add A Plus Sign To Indicator Value

The simple script below will allow you to add a plus sign to the primary Indicator Value:widget.on('processresult', function(w, args) { var data = args.result.value.data; if(data > 0) { args.result.value.text = '+' + args.result.value.text; } });

intapiuser by Community Team Member
  • 765 Views
  • 2 comments
  • 0 kudos

Time Series Chart - Visualizing Hrs/Min/Sec

Download: Time SeriesIntroductionThe OOTB charts in Sisense limit the date roll-up granularity to days. This imposes limitations when working with granular times series data. This plugin facilitates roll-up of dates up to the millisecond level. It al...

intapiuser by Community Team Member
  • 1543 Views
  • 2 comments
  • 1 kudos

Define Widget Navigator Scroll Position

In some cases, it may be desirable to define the default location of a widget's navigation scroll bar. Users will still have the ability to expand and move the navigation scroller, but anytime the dashboard is reloaded, the scroller will default to t...

intapiuser by Community Team Member
  • 727 Views
  • 1 comments
  • 1 kudos

Dashboard Script for Automatic Filter Cascading

Dashboard Script for Automatic Filter Cascading This dashboard script below can be used to synchronize the selections of a set of filters. For example, if the first filter is set to ABC, all subsequent filters listed will automatically be updated to...

TriAnthony_0-1702322218860.png TriAnthony_0-1702325930661.png TriAnthony_2-1702323035685.png
TriAnthony by Community Team Member
  • 1973 Views
  • 1 comments
  • 3 kudos

Color the cell based on the value

Here is the script on how to color the Pivot cell based on the value of this cell.For example color the cells that contains the value "True"://Text column formatting widget.on('ready', function(se, ev){ var evalCol = 12; //fidx val of column to eval...

intapiuser by Community Team Member
  • 1021 Views
  • 1 comments
  • 0 kudos
Labels