Forum Discussion

chriswalz's avatar
chriswalz
Regular Visitor
8 years ago
Solved

custom R visual runtime error (access denied to local url)

Hi,   I have created a custom Power BI visual using this http://radacad.com/interactive-map-using-r-and-power-bi-create-custom-visual-part-1 tutorial. I'm using Plotly to create a interactive char...
  • chriswalz's avatar
    chriswalz
    8 years ago

    I've received the solution from Microsoft support that worked for me.

     

    Simply remove the plot_ly conversion in the end:

     

    (gg <- ggplotly(g))

     

    and use 'g' as input for internalsavewidget because 'g' is already a plot_ly object.

    Not sure why this leads to an error in PowerBI service because converting a plot_ly object to a plot_ly object shouldn't be a issue.