You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem with the font size of the, axes, point names, labels of the 3dplots im running in Shiny. The plots are behaving well. Only the font size of all the names are huge.
In all the 3d plot functions this problem is appearing.(scatter3d,plot3d,points3d, scatterplot3d)
Tried of lot of codes like cex.... and size...., anyone?
I have a problem with the font size of the, axes, point names, labels of the 3dplots im running in Shiny. The plots are behaving well. Only the font size of all the names are huge.
In all the 3d plot functions this problem is appearing.(scatter3d,plot3d,points3d, scatterplot3d)
Tried of lot of codes like cex.... and size...., anyone?
Im using the following code
UI:
shinyUI(navbarPage("Name",
tabPanel("|",
mainPanel( ))),
navbarMenu("Name",
tabPanel("Name",
sidebarLayout(
sidebarPanel(
tags$head(
tags$style(type="text/css", "select { width: 310px; }"),
tags$style(type="text/css", "textarea { max-width: 300px; }"),
tags$style(type="text/css", ".jslider { max-width: 300px; }"),
tags$style(type='text/css', ".well { max-width: 300px; }"),
tags$style(type='text/css', ".span4 { max-width: 300px; }")
),
)
)
)
)
Server:
shinyServer(function(input, output, session) {
output$PCA_plot <- renderWebGL({
points3d(data[,1], data[,2], data[,3])
axes3d()
text3d(data, texts=rownames(data))
})
})
The text was updated successfully, but these errors were encountered: