Merge branch '2573-Graficas_no_se_muestran_bien_Consola_visual-2' into 'develop'

Fixed bullet charts (7 pixels for tickline)

See merge request artica/pandorafms!1679
This commit is contained in:
vgilc 2018-08-13 11:09:34 +02:00
commit 3b6af4485f
1 changed files with 2 additions and 2 deletions

View File

@ -142,10 +142,10 @@ d3.bullet = function() {
tickUpdate.select("line")
.attr("y1", height)
.attr("y2", height * 7 / 6);
.attr("y2", height + 7);
tickUpdate.select("text")
.attr("y", height * 7 / 6);
.attr("y", height + 7);
// Transition the exiting ticks to the new scale, x1.
tick.exit().transition()