how to combine multiple html files with plots with same width and height

Here i tried to combine 2 html world maps as plots but they are combined within 2 rows and the size i.e., height of the plots is reduced, but since i am combining them as html i expect that the we can scroll the html so the plots should be displayed with full width and height as they appear as original.

the gplot1 and gplot2 are 2 ggplotly graphs

gplot1 <- ggplotly(gplot, tooltip = "text")
gplot2 <- ggplotly(gplot, tooltip = "text")

manipulateWidget::combineWidgets(title = "Location of PHUSE Global Events 2022 & 2023",
                gplot1, gplot2,
                byrow = T
 )

The single html appears as below

whereas the 2 html combined with htmlwidget appears as below

I tried to create the html document through Rmarkdown and it worked. Here is the github link for the same

PHUSE Global Events Map (jagadishkatam.github.io)

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.