我可以在d3中用工具提示附加箭头吗?

时间:2016-11-07 08:52:40

标签: d3.js

我的图表在这里小提琴。我想用箭头制作工具提示。我可以在d3中做到这一点吗?attached fiddle of graph

现在为工具提示提供css -

.hor_tooltip {
position: absolute;
width: 50px;
height: auto;
padding: 10px;
background-color: white;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
pointer-events: none;
display:none

1 个答案:

答案 0 :(得分:2)

您可以添加

.hor_tooltip:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #ffffff;
  border-width: 10px;
  margin-top: -10px;
}

请参阅https://jsfiddle.net/c74eoo2b/12/