mirror of
https://github.com/bendtherules/chart-builder-demo.git
synced 2026-08-18 13:42:05 +00:00
Force tip direction for column chart
This commit is contained in:
@@ -126,7 +126,8 @@ app.directive("dynamicChart", function (d3Tip) {
|
||||
|
||||
var tip_points = d3Tip.tip
|
||||
.attr('class', 'd3-tip')
|
||||
.html(function(d) { return d.y; });
|
||||
.html(function(d) { return d.y; })
|
||||
.direction("n");
|
||||
|
||||
var vis = svg.call(tip_points);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user