FLOW Analytics | Make cells Bold and Add a Border on a Pivot Chart

FLOW Analytics | Make cells Bold and Add a Border on a Pivot Chart

You can format a cell to make it bold and add a border as well.

1. Go to Settings and into Cell Customization.

2. Copy and Paste the below JavaScript in the Cell Customization field:

if (e.area == 'data' && e.rowIndex == 5) {e.cellElement.css({  'font-weight': 'bold',  'font-size': '10px',   'border': '2px solid black'});}



3. It is important to indicate the row number under 'e.rowIndex = x'. You can also do this for a column by changing 'rowIndex' to 'columnIndex'.

You can also paste the JavaScript into ChatGPT and ask it to change anything to what you need.