Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Anonymous
Not applicable

Interactive R custom visuals with manipulatedwidget

Hi , 

We would like to combine the use template RHTML (ggplot2) and manipulatedwidget (but manipulatedwidget package R is not included in list of package in powerBI) for create an internal custom visual R

 

Requierements

Change the dimensions/attributs in the visual R and keep the interactive part.

Is there another way ? 

library(manipulateWidget)
library(plotly)

plotTest <- function(xvar, yvar, zvar){
  
  plot_ly(x = ~dataset[[xvar]], y = ~dataset[[yvar]], color = ~dataset[[zvar]],
          type = "scatter", mode = "markers") %>% 
    layout(xaxis = list(title=xvar), yaxis = list(title=yvar))
}

plotTest("Dim1", "Dim2", "Cluster")

varNames <- names(dataset)[2:6]
variables <- names (dataset)[7:10]

manipulateWidget(
  plotTest(xvar, yvar, zvar),
  xvar = mwSelect(varNames),
  yvar = mwSelect(varNames, value = "Dim1"),
  zvar = mwSelect (variables, value = "Cluster")

)
  
Thanks for your help, 
Fanny
0 REPLIES 0

Helpful resources

Announcements
Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Users online (109)