我正在努力使这个工具提示的位置 相对于父div 这就是我实现网页的方式:
<div id="parent">
<div id="chart">
<svg style="height:500px">
</svg>
</div>
</div>
用css:
#parent
{
margin-top:300px;
border: solid blue;
height: 600px;
}
#chart
{
border: solid red;
width:500px;
float:left;
height: 500px;
text-align: center;
font-weight: bold;
margin-bottom: 2em;
}
svg
{
width: 100%;
}
我在nvd3.js文件中找到chartContainer
,但我无法编辑它
那么有可能的解决方案吗?