Firefox中闪亮的仪表板渲染中断

时间:2017-09-21 09:53:33

标签: r shiny shinydashboard

我有一个R闪亮的仪表板。它作为独立程序运行良好。但是,当我在Firefox浏览器中打开它时,它有点休息。

图1显示了它作为独立程序的外观。图2显示了它在Firefox上的外观。

以下是生成该部件的代码。

 sidebar <- dashboardSidebar(   
   sidebarMenu(

   menuItem("My Shiny",  tabName = "twebuddies_uhg", icon = icon("twitter-square"), 
              badgeLabel = "Info", badgeColor = "red" ),

 more menues

感谢您花时间和精力帮助解决这个问题。谢谢。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以尝试使用文档开头的选项并指定运行时。

这里有一些参考链接:

  1. flexdashboard/shiny.html

  2. shiny_prerendered.html

尝试如下使用运行时选项(在文档的开头):

---
title: "Name of App"
output: flexdashboard::flex_dashboard 
runtime: shiny # Or shiny_prerendered
---