Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
crosstab hide/show levels
jordi
I'm using Birt 2.3.1
I have a crosstab report (build using the sample DB) with dimensions [Country-State] and [ProductLine] and a simple measure. I have a total sum for Country an State.
I'm able to hide State level in function of a report parameter. To do it, I change visibility and format of each involved cell. However, I always get a blank row where cells were. And it's height is proportional to number of rows.
See the image.
How can I totally hide a level?
Report design is attached and I copy here the css file I use for crosstabs.
.crosstab{
border: 1px solid gray;
}
.crosstab-cell{
border: 1px solid gray;
}
.nb-crosstab-cell{
border: none;
height: 0px;
margin:0px;
padding:0px;
display:none;
}
Find more posts tagged with
Comments
shruti
Hi,
I am facing the similar issue, unable to hide the rows... were you able to hide the level completely??
Regards
Abdel
Hi all,
I have the same issue.. I also need to hide the Totals column also.. Any idea how we can do it?
Thanks in advance,
Abdel
zkhalid
Hi All
You can do it in html via CSS. You can specify the style to that particular cell. Style could be in css
.hide
{
display:block;
}
but may have some issues when exporting. I am still trying to figure out the same issue.