Raw Data Table rows height

I have a Raw Data Table and I’m using custom styles to change the font size of the text in the rows, but i need to also make the rows higher, so how can i make them higher?
These are my styles:


tableColor.theme({
    "rowOddStyle": "font-size: 25px;",
    "rowEvenStyle": "font-size: 25px;",
})
viz.set('color',color)

For the row height you can use the Ag-grid custom options, you can specify custom Ag-grid configurations directly like this:

let customOpts = {
        rowHeight: 40, 
}

yourRDT.set('customOpts', customOpts)
1 Like

Thanks for the suggestion! I’ve added that code to my Raw Data Table definition and it worked perfectly. The row height is now set with what I specified. Appreciate the help!