mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
Fixed bullet charts (7 pixels for tickline)
This commit is contained in:
parent
9dd9ad71a8
commit
9d4297356e
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user