Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Power BI Embedded localeSetting is not applying the setting

Try to set the localestting during initialization of Embbed report

 

 var reportConfig = {       
            settings: {
                        filterPaneEnabled: true,
                        localeSettings: {
                            language: 'fr',
                            formatLocale: 'fr'
                        } 
}
};

var reportElement = document.getElementById('pbi-report');

//Embed report
var report = powerbi.embed(reportElement, reportConfig);

 As alternative we try to this after the load event

 const newSettings = {
            localeSettings: {
                language: 'fr',
                formatLocale: 'fr'
            }
        };
     

  report.on('loaded', function (event) {
            console.log("Loaded");
            report.updateSettings(newSettings);
            console.log("Updated report", report);
            console.log("Updated");
        });

The report is rendered in our language "Dutch".  I know the setting inherited from browser setting. But I want to overrule this.

 

Any idea what I'm doing wrong?

Status: New
Comments
Eric_Zhang
Employee

@wkruger

Thanks for your reporting. I can somewhat reproduce the issue. I've submitted an issue in the Power BI Javascript API Lib. The developers would comment and give a fix if it is identified as an issue.