Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This article describes how to change the height of the bars shown in the column header using CSS.

Step-by-Step-Guide

  1. Insert the following code in the "custom.css" of your application.

    //key figures
    div[class*="columTitleDivider1"], div[class*="columTitleDivider3"]
    {
        overflow: hidden !important;
        height: 1px !important;
    }
    //deviation
    div[class*="columTitleDivider2"]
    {
    	height: 1px !important;
    }
    
    
  2. By using the "height" attribute in the copied CSS code you are able to adjust the bar width.

  • No labels