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

Knowledge Base Articles

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
  • 903 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
  • 630 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
  • 965 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
  • 647 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
  • 1332 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
  • 618 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
  • 1435 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
  • 888 Views
  • 1 comments
  • 0 kudos

Adding Percentage Of Total For Column And Bar Charts

The column and bar charts allow you to add value labels to the bars. In the widget's design panel, you can turn on "Value Labels" to display the values on the chart itself. The picture below shows a typical example of a column chart, in this example ...

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

JumpToDashboard Plugin - How to Use and Customize

JumpToDashboard Plugin - How to Use and Customize This article provides a detailed guide on how to use the JumpToDashboard plugin and describes its possible configurations. The guide covers the following topics: Get StartedCustomize your target (_dri...

Screenshot 2023-08-21 at 17.08.17.png Screenshot 2023-08-21 at 17.13.01.png Screenshot 2023-08-21 at 17.13.59.png Screenshot 2023-08-21 at 17.14.31.png
Liliia_DevX by Sisense Team Member
  • 4175 Views
  • 0 comments
  • 5 kudos

Card View Customization

Before:After:Dashboard script for creating card view:dashboard.on('widgetready',function(d) { $('.dashboard-layout-column').css('background-color', '#f0f0f0'); $('.dashboard-layout').css('background-color', '#f0f0f0'); $('.dashboard-layout-c...

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

How to Remove/Hide a Full-Screen Button from the Widget

How to Remove/Hide a Full-Screen Button from the Widget This article explains how a user can hide, or remove, the 'Full-Screen' button from their widget toolbar. Please note that this button is available for users who are not the dashboard owner. Th...

Screenshot 2023-05-30 at 17.31.30.png gif.gif
Liliia_DevX by Sisense Team Member
  • 1531 Views
  • 4 comments
  • 2 kudos
Labels