Skip to content

Commit 71d5b6e

Browse files
committed
minor updates
1 parent 26c01fe commit 71d5b6e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

inst/shiny/server.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1465,7 +1465,7 @@ output$attrhist <- renderPlot({
14651465
if(input$attrhistaxis == "percent"){
14661466
tab <- tab/sum(tab)
14671467
}
1468-
barplot(tab, xlab = attrname, col = histblue)
1468+
barplot(tab, main = attrname, col = histblue)
14691469
}
14701470
} else {
14711471
r <- ceiling(nplots/2)
@@ -1483,7 +1483,7 @@ output$attrhist <- renderPlot({
14831483
if(input$attrhistaxis == "percent"){
14841484
tab <- tab/sum(tab)
14851485
}
1486-
barplot(tab, xlab = a, col = histblue)
1486+
barplot(tab, main = a, col = histblue)
14871487
}
14881488
}
14891489
}

inst/shiny/www/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ div.placeholder {
341341
#termdoc {
342342
background:#FFFFFF;
343343
border:none;
344-
padding:5px;
344+
padding:10px;
345345
}
346346
#termdocbox {
347347
position:absolute;

0 commit comments

Comments
 (0)