Table column formatting: value + string (printf like)

Is there a way to format the values in a table column such that one can append the same string to each value? For ticks one can use the PrintfTickFormatter however there does not seem to be an option for the DataTable?

HTMLTemplateFormatter is probably your best bet.

This formatter does seem work quite well however in my case I also need to format numbers as well. Basically I would like to first format numeric values (using the number formatter) and then append some string. Effectively this is chained formatting which I guess is not supported out of the box?

I think either a “composable” cell formatter or a new CustomJSCellFormatter (that users could manually do their own compositions in) seem reasonable. Please feel free to make a GitHub Issue to request the feature.