D3.js-坐标轴生成测试SVG

时间:2024-08-19 23:36:44

Bottom top Bottom top

// =0)
return "translate("+margin+","+i*offset+")";
else
return "translate("+i*offset+","+margin+")";
})
.call(axis);
console.log(margin);
}
function renderAll(orient){
if(svg) svg.remove();
createSvg();
renderAxis(d3.scale.linear().domain([0,1000]).range([0,axisWidth]),1,orient);
renderAxis(d3.scale.pow().exponent(2).domain([0,1000]).range([0,axisWidth]),2,orient);
renderAxis(d3.time.scale().domain([new Date(2012,0,1),new Date()]).range([0,axisWidth]),3,orient);
}
// ]]>