Hello,
I am trying to localize the values shown in the ejPivotGrid widget. Especially the currency values should be shown with the proper currency symbol (Euro sign in my case).
However, with currency values the dollar sign is always shown.
I have set the locale of the ejPivotGrid with:
gridElem.ejPivotGrid({
url: Constants.CubeUrls.gridUrl,
locale: "nl-NL",
...
}
The OLAP data is retrieved by a WebApi REST Service. The culture property of the datamanager is also set to the Dutch culture:
var dataManager = new OlapDataManager(connectionsStr)
{
Culture = new System.Globalization.CultureInfo(1043),
OverrideDefaultFormatStrings = true
};
And the language of the Analysis service is also set to "Dutch".
What am I missing? How do I make sure that the proper currency symbol is shown?
With kind regards,
Bas