--
You received this message because you are subscribed to the Google Groups "ShinyApps Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shinyapps-use...@googlegroups.com.
To post to this group, send email to shinyap...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shinyapps-users/0217fd1a-3067-4dea-b17d-7f08ba66a138%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Here is a reproducible example:
## ui.R
library(rCharts)
shinyUI(
fluidPage(
headerPanel("rCharts: Export issue"),
helpText("Export options work locally and on shiny-server but fails to work on shinyapps.io."),
tags$br(),
showOutput("myChart", "highcharts"),
tags$br(),
#includeMarkdown("info.md")
verbatimTextOutput("display")
))
## server.rlibrary(rCharts)shinyServer(function(input, output) { output$myChart <- renderChart({ data(iris) is <- iris[c(1:10,51:60,101:110),] is$Species <- factor(as.character(is$Species)) p1 <- rCharts::hPlot(x="Species", y="Sepal.Length", data = is, color = "Species", type = 'bar') p1$addParams(dom = 'myChart') p1$exporting(enabled=T, buttons=list( contextButton = list( align = 'left', verticalAlign = 'top' ) )) p1$chart(zoomType='x', height=500, width=800) return(p1) }) output$display <- renderText({ paste0(capture.output(sessionInfo()),"\n") })}) --
You received this message because you are subscribed to the Google Groups "ShinyApps Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shinyapps-use...@googlegroups.com.
To post to this group, send email to shinyap...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shinyapps-users/e5d0520f-aff9-4113-9ef4-31b084352d30%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shinyapps-users/686f0426-7c8a-4d0e-97f5-3b27132a203e%40googlegroups.com.
Mixed Content: The page at 'https://website/' was loaded over a secure connection, but contains a form which targets an insecure endpoint 'http://export.highcharts.com/'. This endpoint should be made available over a secure connection.
--
You received this message because you are subscribed to the Google Groups "ShinyApps Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shinyapps-use...@googlegroups.com.
To post to this group, send email to shinyap...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shinyapps-users/1d038b8f-10b5-4221-9f24-ebcf3ea445c8%40googlegroups.com.