[line chart] adding option for circle markers (#1006)

This commit is contained in:
Maxime Beauchemin
2016-08-26 11:45:46 -07:00
committed by GitHub
parent 36a6714e9e
commit b93f9ec598
3 changed files with 15 additions and 1 deletions

View File

@@ -309,6 +309,12 @@ function nvd3Vis(slice) {
.attr('width', width)
.call(chart);
if (fd.show_markers) {
svg.selectAll('.nv-point')
.style('stroke-opacity', 1)
.style('fill-opacity', 1);
}
return chart;
});