Hey
I have created a smart chat where one of its columns shows the amount of money. I would like to add next to each value the dollar symbol. Currently it is shown as is:

I would like the values to be shown instead, e.g. $60.00 USD.
How can i achieve this?
Thanks!
Hi @usr1vang,
It will be easier for me to help you with the code of your smart chart
. Could you please share it
?
Hmm not sure you are talking about smart chart. Aren’t you talking about API Chart ? If yes you can’t achieve what you want with the API Chart for now 
No, it is a smart chart. Here is the other part of the code:
Okey this is the part that interest me 
export default class extends Component {
async fetchData() {
const response = await this.lianaServerFetch('/forest/transaction-chart', {});
const jsonResponse = await response.json();
this.charities = jsonResponse.map(charity => ({ ...charity, amount: `$${charity.amount} USD` }));
}
This should display the dollar like you wanted 