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.

Reply
Anonymous
Not applicable

Set a user-defined title to a custom R HTML visual

Hello,

 

  I'm using pbiviz to do some custom R HTML visuals. With capabilities.json, I'm able to control the dataset(s) exported from Power BI to the the R script (their names and their display names). But is it possible to export say a string to use as a title of the graphic? (for example if I use ggplot with ggtitle followed by ggploty). I mean a string that the user is able to choose.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I managed to add a text input for setting a title and a dropdown list for setting a chart theme:

 

ggsettings.png

 

This is achieved by modifying two files: the file capabilities.json and the file src/settings.ts in the folder created by pbiviz.

Here is the file capabilities.json. I modified the objects node:

 

ggsettings_capabilitiesjson.png

And here is the TypeScript file src/settings.ts:

 

ggsettings_settingsts.png

 

Then, in the file script.r, the title set by the user and the theme he chooses are named ggsettings_ChartTitle and ggsettings_ChartTheme respectively. But they won't be available at the first creation of the chart, so we have to check for their existence in the R script. Here is the full script I used:

 

ggsettings_script.png

View solution in original post

1 REPLY 1
Anonymous
Not applicable

I managed to add a text input for setting a title and a dropdown list for setting a chart theme:

 

ggsettings.png

 

This is achieved by modifying two files: the file capabilities.json and the file src/settings.ts in the folder created by pbiviz.

Here is the file capabilities.json. I modified the objects node:

 

ggsettings_capabilitiesjson.png

And here is the TypeScript file src/settings.ts:

 

ggsettings_settingsts.png

 

Then, in the file script.r, the title set by the user and the theme he chooses are named ggsettings_ChartTitle and ggsettings_ChartTheme respectively. But they won't be available at the first creation of the chart, so we have to check for their existence in the R script. Here is the full script I used:

 

ggsettings_script.png

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors