Skip to content

Calculated column value #3678

Closed Answered by paustint
bliu886 asked this question in Q&A
Discussion options

You must be logged in to vote

Just use a custom cell renderer and you can do whatever you want to do there as shown in the examples:
e.g.

renderCell(props) {
const value = props.row.progress;
return (
<>
<progress max={100} value={value} style={{ inlineSize: 50 }} /> {Math.round(value)}%
</>
);
},

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by bliu886
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants