在Shiny fluid页面中指定列宽

时间:2016-02-04 18:27:20

标签: r shiny

我有像Shiny这样的布局

 shinyUI(fluidPage(
     tags$head(tags$script(src="lib.js"))
    ,tags$link(rel = "stylesheet", type = "text/css", href = "thispage.css")
    ,titlePanel("Inbound Level Shift Detector")
     ,mainPanel(
         tabsetPanel(type ...

相应的HTML源是

  <div class="container-fluid">
    <link rel="stylesheet" type="text/css" href="thispage.css"/>
    <h2>Inbound Level Shift Detector</h2>
    <div class="col-sm-8">
      <div class="tabbable tabs-above">

如何在R代码中指定顶级为col-sm-12而不是col-sm-8

由于

1 个答案:

答案 0 :(得分:3)

使用mainPanel(...,width = 12)。这应该有用。