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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
jgreg14
Frequent Visitor

Custom Layout Live Demo - Hiding Visuals

Hi all,

 

Looking to see if anyone can help with hiding visuals using checkboxes as per:

https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html#

 

I have it up and running so that the checkbox changing triggers an event which triggers the following code. However the new values for the displaystate is not passed in when using the updatesettings()

 

What am i missing to enable the visuals to hide.

 

thanks

 

 

//render the values
function renderVisuals() {

// render only if report and visuals initialized
if (!report || !layoutVisuals)
return;

// Get models. models contains enums that can be used

 

// Filter the visuals list to display only the checked visuals
let checkedVisuals = layoutVisuals.filter(function (visual) { return visual.checked; });
let uncheckedVisuals = layoutVisuals.filter(function (visual) { return visual.unchecked; });
//console.log(layoutVisuals);
//console.log(checkedVisuals);
//console.log(uncheckedVisuals);
let visualsLayout = {};

 

//for (let i = 0; i < checkedVisuals.length; i++) {
//visualsLayout[uncheckedVisuals[i].name] = {
//displayState: {

// Change the selected visuals display mode to visible
//mode: models.VisualContainerDisplayMode.Hidden
//}
//}
//}

for (let i = 0; i < uncheckedVisuals.length; i++) {
visualsLayout[uncheckedVisuals[i].name] = {
//layout: {
x: 10,
y: 10,
//}
//displayState: {

//Change the selected visuals display mode to visible
//mode: models.VisualContainerDisplayMode.Hidden
//}

}
console.log(visualsLayout[uncheckedVisuals[i].name]);
}
console.log('visualsLayout')
console.log(visualsLayout)
console.log(currentPage)

// Building pagesLayout object
let pagesLayout = {};
pagesLayout[currentPage]= {
defaultlayout: {
displayState: {

// Default display mode for visuals is hidden
mode: models.VisualContainerDisplayMode.Hidden

}

},
visualsLayout: visualsLayout
};

// Building settings object
let settings = {
//pagesLayout: pagesLayout
//filterPaneEnabled: true,
layoutType: models.LayoutType.Custom,
//customLayout: {
//displayOption: models.DisplayOption.FitToPage,
pagesLayout: pagesLayout,
//filterPaneEnabled: true,

//}

 

};


// Call updateSettings with the new settings object

console.log('refreshing');
console.log(settings);

report.updateSettings(settings)
.catch(function (error) { console.log(error); });


currentPage.getVisuals().then(function (visuals) {
console.log('final')
console.log(visuals);

});

 

0 REPLIES 0

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors