You would need to check the markup inside your data grid, but if you have applied the currency class the column, something like this should work.
td.currency div:before {
content: "$";
}
Here we’re saying that we want to apply the style to the content of div elements inside td elements with a class of currency.
Hope this helps