Spaces:
Running
Running
resized sliderInput
Browse files
app/app.R
CHANGED
|
@@ -266,21 +266,23 @@ ui <- shinydashboardPlus::dashboardPage(
|
|
| 266 |
|
| 267 |
fluidRow(
|
| 268 |
|
| 269 |
-
column(
|
| 270 |
|
| 271 |
markdown("## **Step 1 - Define the Range**"),
|
| 272 |
|
| 273 |
sliderInput(inputId = "range_round",
|
| 274 |
label = "Numerai Classic Tournament Rounds",
|
| 275 |
width = "100%",
|
|
|
|
| 276 |
min = 168, # first tournament round
|
| 277 |
max = Rnumerai::get_current_round(),
|
| 278 |
# note: daily rounds from round 339
|
|
|
|
| 279 |
value = c(339, Rnumerai::get_current_round())
|
| 280 |
)
|
| 281 |
),
|
| 282 |
|
| 283 |
-
column(
|
| 284 |
|
| 285 |
markdown("## **Step 2 - Visualise**"),
|
| 286 |
br(),
|
|
|
|
| 266 |
|
| 267 |
fluidRow(
|
| 268 |
|
| 269 |
+
column(8,
|
| 270 |
|
| 271 |
markdown("## **Step 1 - Define the Range**"),
|
| 272 |
|
| 273 |
sliderInput(inputId = "range_round",
|
| 274 |
label = "Numerai Classic Tournament Rounds",
|
| 275 |
width = "100%",
|
| 276 |
+
step = 1,
|
| 277 |
min = 168, # first tournament round
|
| 278 |
max = Rnumerai::get_current_round(),
|
| 279 |
# note: daily rounds from round 339
|
| 280 |
+
pre = "Round ",
|
| 281 |
value = c(339, Rnumerai::get_current_round())
|
| 282 |
)
|
| 283 |
),
|
| 284 |
|
| 285 |
+
column(4,
|
| 286 |
|
| 287 |
markdown("## **Step 2 - Visualise**"),
|
| 288 |
br(),
|