We have updated WebDataRocks EULA, effective as of April 18, 2024. Learn more about what's changed.

How do I hide the link in the lower left?

Answered

i need hide the link on the lower left on pivot table, pls i need ur help

3 answers

WebDataRocks Team WebDataRocks December 16, 2019

Hello,
 
Thank you for reaching out to us.
 
In order to hide the link, our team suggests overriding the CSS of the component.
 
The desired result can be achieved by placing the following code inside the <head> object of the index.html file, where the component is created.

<style>
#wdr-pivot-view > span > a {
display: none;
}
</style>

 
We hope it works for you.
 
Regards,
WebDataRocks Team

César Moncado December 17, 2019

Thank u guys, but i have an other question, i try to add this code and it doesn’t work

<style>
#wdr-pivot-view .wdr-cell {
text-align: center;
}
</style>

I need to center the cell content,pls i need ur help

WebDataRocks Team WebDataRocks December 18, 2019

Hello,
 
Thank you for your feedback.
 
The reason of the problem is that text-align of cells is explicitly defined inside the main CSS file. However, the property can be overridden using `!important` priority modifier.
 
Please see an example below:

#wdr-pivot-view .wdr-cell {
text-align: center !important;
}

 
We hope it helps.
 
Regards,
WebDataRocks Team