3

我正在使用 nvd3.js 显示具有 3 个不同键的图形。在这 3 个中,1 有很多坐标,其余的 2 s 只有一个坐标。现在这些单一的坐标是不可见的。我的代码是这样的:

nv.addGraph(function () {
    var chart = nv.models.lineChart().margin({
        top: 30,
        right: 20,
        bottom: 50,
        left: 45
    }).showLegend(true).tooltipContent(function (key, y, e, graph) {
        return '<h3>' + key + '</h3>' + '<p>' + e + '% at ' + y + '</p>'
    });

    chart.xAxis.tickFormat(function (d) {
        return d3.time.format('%x')(new Date(d))
    });

    d3.select('#lineChart svg')
        .datum(data)
        .transition().duration(500)
        .call(chart);

    nv.utils.windowResize(chart.update);
    return chart;
});

data = [{
    "values": [{
        "x": 1025409600000 ,
            "y": 2
    }, {
        "x": 1028088000000 ,
            "y": 4
    }, {
        "x": 1030766400000 ,
            "y": 1
    }, {
        "x": 1033358400000 ,
            "y": 3
    }, {
        "x": 1036040400000  ,
            "y": 0
    }, {
        "x": 1038632400000  ,
            "y": 3
    }],
        "key": "Cool"
},{
"values": [{
        "x": 1025409600000 ,
        "y": 2
           }],
 "key":hot
    }
]

如果我将鼠标悬停在光标上,认为该hot点正在显示,但该位置不可见。如果键只有一个坐标,请指导我如何使其可见。提前致谢。

更新了图片 在此处输入图像描述 在此处输入图像描述

4

2 回答 2

6

您需要从 0 增加不透明度。

.nvd3.nv-line .nvd3.nv-scatter .nv-groups .nv-point {
  fill-opacity: .7;
}

你可以通过使用来增加圆圈的大小chart.size(300)

这是一个工作示例:http ://plnkr.co/edit/fFqSny?p=preview

于 2013-08-13T14:30:34.917 回答
-1

你也可以使用'fillOpacity'。

例如chart.bars1.fillOpacity(0.7)

看:

为 multiBar 和 multiBarHorizo​​ntal 图表 #1614https://github.com/novus/nvd3/issues/707中的条形交出 fillOpacity

于 2016-08-15T09:39:57.983 回答