You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Was wondering if anyone knows of a way to render a process map with pan and zoom functionality inside an R script in PowerBI? I'm currently only able to render a PNG as PowerBI does not cater for HTML:
The examples of processmaps in PowerBI that I know of all use PNG, so I don't think there is an alternative for that. Beyond that, I'm not sure what the possibilities are for zooming in etc on png's in PowerBi. Mabye you have a higher chance of asking this in a PowerBi community somewhere?
You can print the process_map object using html widgets and this is going to export the GrViz html code, but with the current version of R into PowerBI Service, the controls like pan and zoom are not supported. This can only be done into PowerBI desktop using R4.2 and latest packages of libraries.
Hi All.
Was wondering if anyone knows of a way to render a process map with pan and zoom functionality inside an R script in PowerBI? I'm currently only able to render a PNG as PowerBI does not cater for HTML:
grafik <- process_map(x, type = frequency("relative", color_scale = "Purples"), render = FALSE, rankdir = "TB", fixed_edge_width = TRUE, layout = layout_pm(fixed_positions = NULL, edge_weight = TRUE, edge_cutoff = 0))
export_graph(grafik, "result.png", file_type = "png")
I've tried the export_SVG function, but no luck yet. This would really help as the current map in PowerBI is really small and difficult to view.
The text was updated successfully, but these errors were encountered: