In this article you will learn how to remove the default table row banding color of Tabular Report. Initially, you will require to open existing tabular report or create a new tabular report using your data wherein you want to do the same. In the table you can see that by default alternate rows are in light grey (#ddd) and white color.
Now, If you wish to remove this row banding pattern, you will require a Javascript code.
Javascript Code :
hi_container.set("postExecution", function () { $('table').removeClass('table-striped'); });
To execute a Javascript Code, go to Custom Tab, click on Script, Add the code and then click Inject to execute the entered code.
Output
As you can see in the output all rows band color is white which means table row banding is removed completely. If you wish to do more customization use other CSS and Javascript codes.
For more info, contact us at support@helicalinsight.com