Raw data table column stats size

Hello, i want to do two things, the first one is make the column stats higher and the second one is add more rows to the slicer column stats, is it possible?

Sure you can, this is an example of how you can do it:


.set("columnStats", {
    enabled: true,
    height:70, // the size you want
    widgetProps: [
        {
            field: 'your_column_name',
            props: {
                show: true, // if false the column stat is not going to be rendered, true by default
                limit: 5 // For slicers means the number of rows
            }
        }
    ]
})
1 Like

I see, good!, that looks pretty good and easy, thanks I will give it a try