我正在使用 Shiny + Shinydashboard。我的图表是交互式的,并使用 highcharter 创建。我有多个共享相同 x 轴(日期)的图表。我想链接图表,使十字准线位置在所有图表上都是相同的 x 轴,并在所有链接的图表上移动。
我在 Highcharts 上找到了这个 JS 片段,但它不能与 Highcharter 一起使用。 https://www.highcharts.com/demo/synchronized-charts。
显示我要链接的三个高图的片段
用户界面
tabItem(tabName = 'namespace',
#' graph for message trends
fluidRow(
box(
title = 'Active Namespaces',
highchartOutput('active_namespace_graph', height = '300'),
width = 4
),
box(
title = 'Channel Volume',
highchartOutput('message_volume_graph', height = '300'),
width = 4
),
box(
title = 'Campaigns Created',
highchartOutput('campaign_count_graph', height = '300'),
width = 4
)
)