(selection, x)
| 7886 | left: 1 |
| 7887 | }; |
| 7888 | function d3_svg_axisX(selection, x) { |
| 7889 | selection.attr("transform", function(d) { |
| 7890 | return "translate(" + x(d) + ",0)"; |
| 7891 | }); |
| 7892 | } |
| 7893 | function d3_svg_axisY(selection, y) { |
| 7894 | selection.attr("transform", function(d) { |
| 7895 | return "translate(0," + y(d) + ")"; |