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

Knowledge Base Articles

Dashboard Dictionary

Use Case My users and designers were looking for an easy way to get insights into how certain dashboards and widgets were built in terms of formulas and filters.  Solution For this, I have written a Python script that takes a list of dashboard IDs...

DRay_0-1707934801901.png
DRay by Community Team Leader
  • 377 Views
  • 0 comments
  • 1 kudos

How to change color of the links in Text widget?

How to change the color of the links in the Text widget?To change the color of the link, please do the following.Press 3 dots on the Text widget - Edit Script, paste next script, and press the Save button:const customStyle = { color: 'red' }; wi...

OleksandrB_0-1707413499846.png
OleksandrB by Sisense Team Member
  • 416 Views
  • 0 comments
  • 2 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
  • 956 Views
  • 1 comments
  • 0 kudos

Disable "Add To Pulse" Feature On Widgets

DISABLE "ADD TO PULSE" FEATURE ON WIDGETS FOR ALL VIEWERS Few businesses don't want their Users (Viewers) of the dashboard to add pulse alerts from the visualizations of the dashboard. Though we don't have any feature in the current version of the p...

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

Are there specs for the Marketing Banner size?

Are there specs for the Marketing Banner size? By default, the banner has a fixed height of 425px.As a reference, we suggest identifying a screen resolution you're planning to use with your application mostly. If you take the screen width and use it ...

OleksandrB_0-1707412977752.png
OleksandrB by Sisense Team Member
  • 220 Views
  • 0 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
  • 879 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
  • 608 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
  • 951 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
  • 628 Views
  • 2 comments
  • 0 kudos

5 Simple Rules for ElastiCube Design

Rules To Live By When Designing An Elasticube A list of recommendations which should be considered when developing an elasticube.   Start Small Build your ElastiCube incrementally. Start with only two tables, create an appropriate relationship betw...

intapiuser by Community Team Member
  • 1887 Views
  • 5 comments
  • 0 kudos

Blox Dropdown Placeholder

By default, BloX will use the first element in your dropdown as the default text in the dropdown box.Instead of this value, the following method adds a different default non-selectable value.Steps For ImplementationAdd the addPlaceholder class to you...

intapiuser by Community Team Member
  • 838 Views
  • 1 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
  • 1315 Views
  • 2 comments
  • 1 kudos

Turning zeroes to blanks/empty cell when Zero

Symptoms Sometimes with a pivot table full of many columns with zero and only a few non-zero values, you want the zeroes to display as empty-string.  That way the nonzero values really stand out. (This is the opposite of this:  Solved: nulls to 0 in...

DRay by Community Team Leader
  • 291 Views
  • 0 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
  • 610 Views
  • 1 comments
  • 1 kudos
Labels