I think we need an EnAu locale so that you guys can use your own preferred date format (and possibly other terms), and not rely on the default En (USA) or EnGb locales.
Also, the CurrencyColumn's default should be taken from the loaded locale, not hardcoded as USD.
// Let toolbars know of other view references
Object.defineProperty(gantt.tbar, 'resourceGrid', {
get() {
if (!resourceGrid) {
resourceGrid = new ResourceGrid({
appendTo : 'container',
// resource grid is hidden initially
hidden : true,
project,
resourceImagePath : '../_shared/images/transparent-users/',
columns : {
data : {
// override default cost column
cost : {
// rollup cost to the groups
sum : 'sum',
currency : 'EUR' // <<<<<<<<<<<<< for example, I do not know what is Australian rate currency, just set as you need
},