examples/example-14 Heat Map/ui.R

library(shiny)
library(ECharts2Shiny)

shinyUI(fluidPage(

  # We HAVE TO to load the ECharts javascript library in advance
  loadEChartsLibrary(),

  fluidRow(
    column(6,
           h4("Normal Example", align = "center"),
           tags$div(id="test_1", style="width:100%;height:400px;"),
           deliverChart(div_id = "test_1")
           ),

    column(6,
           h4("Example with NA", align = "center"),
           tags$div(id="test_2", style="width:100%;height:400px;"),
           deliverChart(div_id = "test_2")
           )

  )




  )
)
XD-DENG/ECharts2Shiny documentation built on Oct. 8, 2020, 10:51 a.m.