在plotly的模式栏中将语言设置为德语

时间:2018-04-05 12:27:28

标签: r shiny plotly

我正在使用剧情建造一个闪亮的应用程序。自从Github发布v1.32.0以来,现在还有一个新功能可用于将模式栏设置为德语:

https://github.com/plotly/plotly.js/releases

所以我使用devtools::install_github("ropensci/plotly")安装了最新版本的情节,并尝试将新功能与locale='de'结合使用:

# devtools::install_github("ropensci/plotly")

library(shiny)
library(plotly)

ui <- fluidPage(
  plotlyOutput("plot"),
  verbatimTextOutput("event")
)

server <- function(input, output) {

  # renderPlotly() also understands ggplot2 objects!
  output$plot <- renderPlotly({
    plot_ly(mtcars, x = ~mpg, y = ~wt)%>%
    config(plot_ly(),displayModeBar = T, collaborate=F, displaylogo=F,locale='de') %>%
      layout(hovermode = 'closest')
  })

  output$event <- renderPrint({
    d <- event_data("plotly_hover")
    if (is.null(d)) "Hover on a point!" else d
  })
}

shinyApp(ui, server)

根本没有变化,语言仍然是'en'。我做错了什么,有人可以帮忙吗?

0 个答案:

没有答案