Change decimal separator from '.' to ','

I haven’t had any luck with what you pasted above. Without registering the language in numbro, culture selection does not have any effect. I managed to make it work like this though:

import * as numbro from 'numbro';
import hungarianLanguage from 'numbro/dist/languages/hu-HU.min';

// somewhere before table initialization, e.g.: in Angular, constructor of the wrapper
numbro.registerLanguage(hungarianLanguage);
```
...
```
{
  type: 'numeric',
  numericFormat: {
    culture: 'hu-HU',
  },
}
```

Thanks for the quick reply. Cheers.