joshuaulrich / quantmod

Quantitative Financial Modelling Framework
http://www.quantmod.com/
GNU General Public License v3.0
794 stars 219 forks source link

Why does the chart_Series chart look blurry in Shiny? #384

Open mytarmail opened 1 year ago

mytarmail commented 1 year ago

Hi! Why does the chart look blurry in shiny and how can I fix it?

ui <- fluidPage( plotOutput("Chart") )

server <- function(input, output) { output$Chart <- renderPlot({ chart_Series(symb) }) }

shinyApp(ui, server)

The question was asked in more detail here.