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

Knowledge Base Articles

Modifying X Axis Labels

OverviewSisense's default behavior is to use values directly from the Elasticube to set the X-Axis. But what if you want to do more? Modifying the x-axis labels is very easy and very flexible. Let's look at the base code.widget.on('render', function(...

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

Advanced Quadrant Chart

ObjectiveDesign a quadrant chart based on X and Y axis averages with conditional formatting.StepsCreate standard scatter chartCreate a value in break by and assign the integer 1 to itCreate Aliases for multipasses by the Point dimension for the X and...

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

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
  • 1793 Views
  • 4 comments
  • 0 kudos

Clickable URL Links In Pivot Rows

Render existing HTML code stored in your data modelFollow the steps below in order to URL clickable within a pivot table. Some steps are different depending on whether your Sisense instance is running on Windows or Linux. You can check whether your S...

intapiuser by Community Team Member
  • 4249 Views
  • 3 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
  • 553 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
  • 834 Views
  • 1 comments
  • 0 kudos

Color Heatmap

Version: 1.4 DisclaimerUse the download Link for L2023.7 or newer. For older versions of Sisense, use the other attached version of the ColorHeatmap pluginIntroductionThis article explains how to install and configure the Color Heatmap widget as seen...

intapiuser by Community Team Member
  • 1346 Views
  • 2 comments
  • 1 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
  • 630 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
  • 491 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
  • 789 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
  • 523 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
  • 969 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
  • 506 Views
  • 1 comments
  • 1 kudos

How to Hide Export to Excel Option On a Pivot Table (Linux)

How to Hide Export to Excel Option On a Pivot Table (Linux) This article provides an example of a code snippet that could be used to hide a specific option from the Download menu on a widget level. If you find yourself needing to hide the export to ...

Screenshot 2023-04-12 at 15.49.34.png Screenshot 2023-04-12 at 16.57.27.png Screenshot 2023-04-12 at 16.56.51.png
Labels