Add Support Tool to Sisense Cloud Environment
Is there a way to globally add a support plugin to the Sisense Cloud environment? We'd like to add a javascript action that would allow us to expand our support tool, Intercom, to our dashboard environment globally. This would be great to have applied to every page, including the navigation screen, when a user logs in.1.2KViews0likes2CommentsRemove Accordion button symbol with a hover over from Widget Title Bar
I am using the Accordion plugin and it works great. My only issue is that it places a symbol with a hover over in widget title. Great idea but it causes the widget title to look garbled and hard to read. I would like to remove this in the widget title. Thank you1KViews0likes0CommentsSupport to Initiate Jump to Dashboard
I have a dashboard and would like to 'Jump to Dashboard' from the indicator widget. In the indicator widget, I have added the following script, but I do not see the option in the indicator widget to jump to the dashboard. { "type": "JTD", "title": "Jump To Dashboard", "data": { "dashboardId": "xxxxxxxxxxxxxxxxxxxxxxx", "displayDashboardsPane": false, "displayFilterPane": true } I created a dashboard (dashboardId: xxxxxxxxxxxxxxxxxxxxxxxx). We are not on Sisense cloud and I am not the Sisense Server administrator. It will be time consuming for me to go back and forth with the config file changes as I am testing. Can I make all of the changes in the script of each widget instead of the config file?1.4KViews0likes1CommentHistogram Plugin - PDF Errors
I am working with the Histogram Widget on several dashboards, and have found that it does not display in a downloaded PDF. It also does not allow for Scheduled Reports to be sent via email with attached PDFs. Here is the link to the plug-in: https://www.sisense.com/marketplace/histogram-widget/?searchString=histogram Has anyone found a solution for this?1KViews0likes0CommentsMapbox GL not displaying
Good Day, Can someone assist? I have installed the Mapbox GL widget (https://community-old.sisense.com/hc/en-us/community/posts/360001676433-Mapbox-GL-Widget) But it does not display anything, I have added the Mabbox API as per the original post but keeps displaying a grey box Any assistance would be greatly appreciated2.5KViews1like1CommentOrdering Pivot Weekday column Mon-Sun
I have a pivot table that is pivoting on a weekday column. How can I get this displaying in order Mon-Sun? Currently, I have added a custom column “weekdayOrder“ as the first pivot column and a widget script. It kind of works, but I'm looking for a better solution. Case when nm_day_of_week = ‘monday’ then ‘hidea’ when nm_day_of_week = ‘tuesday’ then ‘hideb’ when nm_day_of_week = ‘wednesday’ then ‘hidec’ when nm_day_of_week = ‘thursday’ then ‘hided’ when nm_day_of_week = ‘friday’ then ‘hidee’ when nm_day_of_week = ‘saturday’ then ‘hidef’ when nm_day_of_week = ‘sunday’ then ‘hideg’ END and then added a script: widget.on(‘ready’, function(se, ev){ $(“tbody tr” , element).not(‘.wrapper, .p-head-content’).each(function(){ var cell = $(this).children().last(); for (var a = 0; a < 7; a++){ cell = cell.prev(); var cell_value = cell.text() if (cell_value.match(/hide.*/)) { $(cell).css(“background-color”, ‘White’); $(cell).css(“color”, ‘white’); } } }); });2.5KViews0likes2Comments