Add a landing page to your Power BI visual
A Power BI visual’s landing page enables you to display information in your Power BI visual card, before it’s loaded with data. Here are a few examples of what a visual’s landing page can display:
- Text that explains how to use the visual
- A link to your website
- A link to a video
An example of a landing page is shown in the following image:

This article explains how to design a landing page for your visual. The landing page is displayed whenever the visual has no data in it.
Note
Designing a Power BI visual landing page is supported from API version 2.3.0. To find out which version you’re using, run the pbiviz -V command.
Creating a landing page
To create a landing page, certain capabilities have to be set in the capabilities.json file.
- For the landing page to work, enable
supportsLandingPage. - For the landing page to be displayed in view mode or for the visual to be interactive even when in no data-roles mode, enable
supportsEmptyDataView.
{
"supportsLandingPage": true,
"supportsEmptyDataView": true,
}
Example of a visual with a landing page
The following code shows how a landing page can be added to bar chart visual.
export class BarChart implements IVisual {
//...
private element: HTMLElement;
private isLandingPageOn: boolean;
private LandingPageRemoved: boolean;
private LandingPage: d3.Selection<any>;
constructor(options: VisualConstructorOptions) {
//...
this.element = options.element;
//...
}
public update(options: VisualUpdateOptions) {
//...
this.HandleLandingPage(options);
}
private HandleLandingPage(options: VisualUpdateOptions) {
if(!options.dataViews || !options.dataViews[0]?.metadata?.columns?.length){
if(!this.isLandingPageOn) {
this.isLandingPageOn = true;
const SampleLandingPage: Element = this.createSampleLandingPage(); //create a landing page
this.element.appendChild(SampleLandingPage);
this.LandingPage = d3.select(SampleLandingPage);
}
} else {
if(this.isLandingPageOn && !this.LandingPageRemoved){
this.LandingPageRemoved = true;
this.LandingPage.remove();
}
}
}
Next steps
Maklum balas
Kirim dan lihat maklum balas untuk