有没有办法突出显示 R dygraphs 中最接近的系列?

Is there a way to highlight closest series in R dygraphs?

我正在为 R 使用 dygraphs https://rstudio.github.io/dygraphs/ and I am wondering is there a way to highlight closest series like it is done in original dygraphs? Demo gallery here: http://dygraphs.com/gallery/#g/highlighted-series

我对CSS和HTML真的很陌生。感谢您的帮助和建议。

如果你只是想突出显示鼠标光标下方的系列,那么你可以使用 dyHighlight 。检查:official R-dygraph website

在图例中强调突出显示系列的名称有点棘手。您需要在单独的 css file and add it 中编辑 .highlight class 到您的图表:

your_dygraph %>% dyCSS("dygraph.css")

dygraph.css的示例:

.highlight {
  /*border: 2px solid black;*/
  background-color: #B0B0B0; /* grey background*/
}

不知何故,接受的答案对我当前版本的软件包不起作用。这是我喜欢的有效方法(来自 here or here):

d1$x$css = "
.dygraph-legend > span {display:none;}
.dygraph-legend > span.highlight { display: inline; }
"
d1