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

Knowledge Base Articles

Latest Date In A Pivot

Question: How to see the latest date in the Pivot? Solution: You need to change the date to an integer. Then I used the script in the comments in a previous post, and was able to request results. This is the script we used var m_names = new Arra...

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

Hide the widget's Button from the Toolbar for Viewer User

Hide the widget's Button from the Toolbar for Viewer UserWe will be learning how to hide information/additional buttons on the widgets from the Viewer user. Also, it is possible to hide these buttons from all users.   For this press the 3 dots in the...

OleksandrB_2-1707942105724.png OleksandrB_3-1707942105725.png
OleksandrB by Sisense Team Member
  • 383 Views
  • 0 comments
  • 2 kudos

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
  • 361 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
  • 378 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
  • 911 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
  • 973 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
  • 210 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
  • 815 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
  • 585 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
  • 907 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
  • 599 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
  • 1777 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
  • 793 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
  • 1132 Views
  • 2 comments
  • 1 kudos
Labels