在R shiny / rcharts中渲染后添加highcharts plotband

时间:2013-11-27 16:24:28

标签: r highcharts shiny rcharts

我正在尝试在运行rCharts且闪亮的应用中复制此(jsfiddle)高图功能。我想要一个用户事件(更改文本框中的值)以将绘图带添加到已渲染的绘图(或理想地删除先前/添加新绘图)。我可以通过在xAxis选项中使用plotband重绘绘图来实现它,但对于我正在绘制的一些绘图来说,这可能非常慢。

我不确定r包中是否有功能,但有没有办法放入javascript来执行该功能?

这是一个最小的工作示例:

server.R

library(shiny)
library(plyr)
library(rCharts)
shinyServer(function(input, output,session){
  output$h1chart <- renderChart({
    h1 <- rCharts::Highcharts$new()
    h1$chart(type = "spline")
    h1$series(data = c(1, 3, 2, 4, 5, 4, 6, 2, 3, 5, NA), dashStyle = "longdash")
    h1$series(data = c(NA, 4, 1, 3, 4, 2, 9, 1, 2, 3, 4), dashStyle = "shortdot")
    h1$legend(symbolWidth = 80)
    h1$xAxis(title = list(text = "Test Plot"),startOnTick=TRUE,min=1,max=9,endOnTick=TRUE,
          plotBands = list(list(from=1.5,to=3.5,color='rgba(68, 170, 213, 0.1)',label=list(text="1",style=list(color="#6D869F"),verticalAlign="bottom"))))
    h1$set(dom="h1chart")
    return(h1)
  })
  output$selectedOut <- renderUI({
    numericInput("selected", "", value=2.5)
  })
  output$windowOut <- renderUI({    
    sliderInput(inputId="window",label="Window size around selected point:",min=1,max=5,value=2)
  })
})#end server

ui.R:

library(shiny)
library(plyr)
library(rCharts)
shinyUI(pageWithSidebar(
  headerPanel(""),
  sidebarPanel(
    wellPanel(
      h6("Change here should update plotband:"),
      uiOutput("selectedOut"),
      uiOutput("windowOut")
    ),
    tags$head(tags$style(type="text/css", ".jslider { max-width: 245px; }"),tags$style(type='text/css', ".well { max-width: 250px; }"),
          tags$style(type='text/css', ".row-fluid .span4 {width: 20%}\n.row-fluid .span8 {width: 75%}"))
  ),
  mainPanel(showOutput("h1chart","highcharts"))  
))

我可以使用此功能捕获对数字框/滑块的更改:

addPB <- reactive({
  center <- as.numeric(input$selected[[1]])
  winHigh <- center+input$window[1]
  winLow <- center-input$window[1] #eventually I would use winLow/winHigh to change the plotband range
  list(winLow=winLow,winHigh=winHigh)
})
observe(print(addPB()$winLow))

我已经尝试构建一个javascript函数来运行它们,但我不知道如果这是如何使用javascript访问highchart对象或如何从闪亮执行代码。

#!function(){$('#container').highcharts().xAxis[0].addPlotBand({from: 2,to: 4, color: 'rgba(68, 170, 213, 0.1)', label: 'asdf'}); } !#

1 个答案:

答案 0 :(得分:10)

您可以使用Shiny中的消息传递来完成此操作。下面是它的工作原理。无论何时更改滑块或numericInput中的数据,都会使用session$sendCustomMessage和json有效负载(在本例中为band)向服务器发送消息。

在服务器端,Shiny.addCustomMessageHandler收到消息。我们访问现有的band,删除它,然后使用处理程序收到的选项创建一个新的band。

有关Shiny中传递消息的更详细概述,我建议您阅读Mark Heckmann的excellent blog post

将以下代码添加到server.R和ui.R

# addition to server.R
observe({
    center <- as.numeric(input$selected[[1]])
    winHigh <- center + input$window[1]
    winLow <- center - input$window[1]
    #eventually I would use winLow/winHigh to change the plotband range
    band = list(from = winLow, to = winHigh, color = "rgba(68, 170, 213, 0.1)")
    print(band)
    session$sendCustomMessage(type = "customMsg", band)
})

# addition to ui.R
mainPanel(
  showOutput("h1chart","highcharts"),
  tags$script('Shiny.addCustomMessageHandler("customMsg", function(bandOpts){
     chartXAxis = $("#h1chart").highcharts().xAxis[0]
     chartXAxis.removePlotBand()
     chartXAxis.addPlotBand(bandOpts)
   })')
)