Forum Discussion
Page Navigator .json Theme
- 4 years ago
Hi,
found this article What makes up a Power BI Desktop PBIX File - Data Analytics | FourMoo and Power BI
explaining how to view content of pbix file. Changed my bpix to zip and found from Lyout -file "name/word" for Bookmark Navigator. For json it is bookmarkNavigator.
- 4 years ago
Hey RemLee
I posted a solution here. However you are not able to change the default shape of the navigation button in the json file.
https://community.powerbi.com/t5/Desktop/JSON-pageNavigator-Visual-StyleNames-amp-CardNames/m-p/2471114#M881023 - 4 years ago
Hi Marvin,
I have worked out the solution - the trick was set a default ID just like the other properties:
"pageNavigator": {
"*": {
"shape": [
{
"$id": "default",
"roundEdge": 25,
"tileShape": "rectangleRounded"
}
],
...
}
}
Hey RemLee
I posted a solution here. However you are not able to change the default shape of the navigation button in the json file.
https://community.powerbi.com/t5/Desktop/JSON-pageNavigator-Visual-StyleNames-amp-CardNames/m-p/2471114#M881023
- thart4 years agoRegular Visitor
Hi Marvin,
I have worked out the solution - the trick was set a default ID just like the other properties:
"pageNavigator": {
"*": {
"shape": [
{
"$id": "default",
"roundEdge": 25,
"tileShape": "rectangleRounded"
}
],
...
}
}- lemkin1232 years agoFrequent Visitor
Hi, have you found a way to just round the top corners of the rectangle? Cheers!
- thart2 years agoRegular Visitor
Hi, there is a really good source here: powerbi-desktop-samples/Report Theme JSON Schema/README.md at main · microsoft/powerbi-desktop-samples · GitHub which contains the schema for the Theme files. From what I have found, the shape option would be "tabRoundTopCorners"
- Anonymous4 years agoNot applicable
Hello Marvin,
I have read your article and helped. Thank you. Do you think out of the discussion in the forum that there is no solution to that or do you have other knowledge about the shape?
- MarvinVitcu4 years ago
Advocate I
Hey Anonymous
I'm sorry, but I believe there is not solution for setting the default shape in the json file. I have tried all kinds of different names for the property; and online there was simply no documentation about it at all.