I need to format currency to GBP. When I use ‘en-GB’ as culture, it still shows as dollars.
I have tried an example found here, but it doesn’t even seem to be working in the demo: http://jsfiddle.net/zjdzxz95/
columns: [
{
type: 'numeric',
numericFormat: {
pattern: '$0,0.00',
culture: 'en-GB'
}
}
]
How should I change the format to GBP?