Raw data table column stats size


#1

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?


#2

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
            }
        }
    ]
})

#3

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