如何设置nvd3工具提示边界

时间:2014-02-11 09:00:33

标签: d3.js nvd3.js

我正在努力使这个工具提示的位置 enter image description here 相对于父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,但我无法编辑它 那么有可能的解决方案吗?

0 个答案:

没有答案