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

Knowledge Base Articles

Auto Add Filter Based On User

Download: Auto FilterIntroductionThis article explains how to automatically add a dashboard filter, based on the logged in user.Purpose/BenefitsIn order to provide a better user experience, you may want to automatically set a filter on your dashboard...

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

Dynamic Dimension/Value Chart

Version: 1.1 Download the plugin attached Introduction This article explains how to install and configure the Dynamic Dim/Value Chart plugin as seen below.  The Dynamic Dim/Value chart allow Dashboard designers to predefine multiple dimension and/or...

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

Indicator With Dates, Time And Duration

Purpose/Benefits This plugin adds additional functionality on how one can display duration and date/time stamps in a Sisense indicator. Seconds to Duration takes the calculated integer and converts it to duration in hours, minutes, seconds, etc.    ...

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

Export Tables To CSV Post Plugin

Download Zip: ExportTablesToCSVPostPlugin Files included: ectools.zipectools_sisense_ver<6.4.zip - (only for versions 6.4 and below)python-2.7.11.amd64.msiconfig_example.txtEC_export.dll This post explains how to install and configure the post plugi...

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

Set Axis Max To Image Size

Use case: I have an image that I want to show markers on. To do this I'm using a scatter graph widget, where I use plotBackgroundImage to set an image to the background.In my dataset I have a set of items with x and y coordinates. However I don't hav...

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

Showing Legend Title For All Chart Types

You can show titles for legends in charts so that your users understand clearly which dimension is displayed in the chart.For example:Solution:To do this, apply the following code snippet on the widget level:widget.on("beforeviewloaded", function(sco...

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

Center Y Axes 0 Of A Cartesian Chart

Apply this widget script:widget.on('beforeviewloaded', (se, ev) => { let min = Math.abs(ev.options.yAxis[0].min); let max = Math.abs(ev.options.yAxis[0].max); max > min ? ev.options.yAxis[0].min = max *-1 : ev.options.yAxis[0].max = min; l...

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

Trend Lines (Menu Based)

  Introduction Use this extension to plot a regression line within a chart. It works for Line, Bar, Column and Scatter charts. It is menu driven and does not require any script to be written. It will plot a regression line for each series in the cha...

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

How Do You Change Subtotal Lable Name

Question: I would like to change the name of the subtotal titles.Solution: You can use the following Javascript on the widget level.var columns = ['0', '1']; //This is an array you can choose a specific column widget.on('ready', function(w, args) { ...

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

Financial Functions

Download: Financejs.zip Introduction This plugin was created to enable additional financial calculations within a pivot table.  The initial version of this plugin supports IRR, XIRR, & NPV functions that match what you would expect in Excel/Google S...

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

Logging Users Out Of Sisense From Your Site

Download: Post Message Introduction The following forum post explains how to log your users out of Sisense from your native application. Purpose Single sign-on (SSO) systems enable your users to authenticate themselves in your online services and th...

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

Auto Collapse Dashboard And Filter Pane

The script below will collapse the dashboard and filter panes when a dashboard first loads. This is helpful when embedding with Iframe and you do not want these panes to show, but do not want to disable them for the user.  Implementation Add the foll...

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

Absolute Values In Column Charts

Introduction Using the following script we can set column chart values to their absolute valuesBefore:After:Script Place the following script in the column charts script:widget.on('processresult', function(w,e) { var s = e.result.series[0].data; ...

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

Sharing A Dashboard By Using The REST API

Sharing a dashboard by using the REST API is very useful in case you need to automate the sharing process.However, in order to do so more than one API call is required, and not using them all in the right order will result in an unsuccessful share.Sh...

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

Filter Measure

Download: Filter MeasureIntroductionThis article will explain how to disregard a widget from a certain filter + the ability to define a specific measure to be affected by this filterBusiness CaseHaving only a specific measure to be affected by a filt...

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

Multiple Fact Tables - Advanced Filtering

Download: JAQL Butler   Purpose/Benefits When your data model contains multiple fact tables, it can add challenges regarding filters.  Consider the following data model. This Elasticube contains data from several fact tables (coming from Google Adw...

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

Convert Seconds To Formatted Time In Bar/Column/Line Charts

In many databases,  the length in time of an action is stored as an integer. This allows for more analytic operations to be performed against the data, such as averages. However, we may want to present this information in a standard time format. (E....

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

Fixed Column Size For Pivot2

In some cases for design or reporting you would like to control the size of your pivot2 columns.The example bellow is for a table with 4 columns 0-3:// Add new width for desired columns // Columns count should start from 0 var newWidth = { 0: 100, 1:...

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