Please define a 'formatter' function for the value fields to custom the value format.
pivot:{
rows:['Country','Category'],
columns:['Color'],
values:[
{field:'Price',op:'sum'},
{field:'Discount',op:'sum',
formatter:function(value,row){
return '$'+value;
}
}
]
}