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

Highcharter visual run in R Studio but not in Power BI Desktop

I have created one Highchart using R and Power BI in R Studio.

Below is a code for the same.

# Input load. Please do not change #
`dataset` = read.csv('C:/Users/spfarm/REditorWrapper_100adf83-d18c-428a-a5c8-0ddab4aeb0b1/input_df_49436338-78cc-4ac0-b4b2-3a828f25c90d.csv', check.names = FALSE, encoding = "UTF-8", blank.lines.skip = FALSE);
# Original Script. Please update your script content here and once completed copy below section back to the original editing window #
##############################
install.packages("highcharter")
library(highcharter)

hc <- highchart() %>%
  hc_xAxis(categories = dataset$Month) %>%
  hc_add_series(name = "London", data = dataset$London) 
  
  hc

The above code will generate following output in R Studio

samp.png

 

Now, when I run the same code in Power BI R script visual, it throws following error.

"No image was created. The R code didn't result in creation of any visuals. Make sure your R script results in a plot to the R default device."

 

How to resolve this issue?

 

2 REPLIES 2
jothi_prakash_a
Frequent Visitor

Is there any update to this thread?

I'm having a similar situation.

v-yulgu-msft
Employee
Employee

Hi @Dhruvin,

 

Based on my research, only plots that are plotted to the R default display device are displayed correctly on the canvas. Please have a look at below similar threads:

R visuals with the DiagrammeR package don't work in Power BI Desktop and Power BI Service

R graphics libraries does not work in PBI?

 

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.