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:
commit
3b6af4485f
|
@ -142,10 +142,10 @@ d3.bullet = function() {
|
||||||
|
|
||||||
tickUpdate.select("line")
|
tickUpdate.select("line")
|
||||||
.attr("y1", height)
|
.attr("y1", height)
|
||||||
.attr("y2", height * 7 / 6);
|
.attr("y2", height + 7);
|
||||||
|
|
||||||
tickUpdate.select("text")
|
tickUpdate.select("text")
|
||||||
.attr("y", height * 7 / 6);
|
.attr("y", height + 7);
|
||||||
|
|
||||||
// Transition the exiting ticks to the new scale, x1.
|
// Transition the exiting ticks to the new scale, x1.
|
||||||
tick.exit().transition()
|
tick.exit().transition()
|
||||||
|
|
Loading…
Reference in New Issue