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
Kimber
Helper III
Helper III

Setting page navigator width in JSON

I'm trying to set the width of a pageNavigator in my JSON file, but it's having no effect. The first object in the code was derived by looking at the source code of the pbix. The 2nd object follows the official documentation. Has anyone succeeded in setting the width of the page navigator?

 

"pageNavigator": {
    "*": {
       "layouts": [
              {
              "id": 0,
              "position":

                    {
                    "width": 1200

                    }
             }],
        "width": 1200

    }

}

3 REPLIES 3
Anonymous
Not applicable

Hi @Kimber 

 

Did rajendraongole1 's method solve your problem? If so, could you please accept it as a solution? This will help more users who are facing the same or similar difficulties. Thank you!

 

Best Regards,
Yulia Xu

rajendraongole1
Super User
Super User

Hi @Kimber - Please find the attached code. 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Unfortunately, the code in the json file didn't work. To start, it generated an error because the "general" property is supposed to be an array. But even after fixing that issue, neither of these suggestions successfully set the width of the pageNavigator. It still defaults to 1000.

 

"pageNavigator": {
    "*": {
        "layouts": [
            {
                "id": 0,
                "position": {
                    "width": 1200
                }
            }
        ]

    }

}

 

 

"pageNavigator": {
    "*": {

        "general": [
            {
                "position": {
                    "width": 1200
                }
            }
        ],

    }

}

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