Forum Discussion

KHConsult's avatar
KHConsult
Cloud Apps
02-24-2023

Vertical Grey Dividers

I have a dashboard that is embedded into a website. In the Sisense dashboard, I do not see vertical grey lines between my horizontal widgets. When the dashboard is embedded, grey lines appear and divide the widgets (see image below).

There are four similar dashboards, but this issue only appears on one. I am using BLOX to create the widgets. I did find the following in the configuration section of the design tab for the widget:

},
"separator": {
"lineThickness": 1,
"lineColor": "#eeeeee"
},
 
#eeeee is grey, but does not appear to be the same shade of grey. This json appears in the configuration of the other widgets as well so I do not believe that is tied to the vertical lines seen in the website. 

Looking for advice on trouble shooting this in Sisense or direction on if there is a step between creating the dashboard and the client pushing it to the website that will remove those vertical lines. 

 

3 Replies

Replies have been turned off for this discussion
  • Hi KHConsult ,

    Please use this script

    dashboard.on('widgetready',function(d) {
      
       $('.dashboard-layout-subcell-vertical-divider').remove();
    //$('.dashboard-layout-subcell-vertical').remove();
    //$('.dashboard-layout-subcell-vertical-divider') .css('background-color','#ffffff')
       
       
    });

     

    Thanks

    Sijo

    • KHConsult's avatar
      KHConsult
      Cloud Apps

      Thank you for providing this. Where would I add this? In the Blox widget Editor tab, Blox widget Configuration tab, or would I go to 'edit script' from within the widget?