Notes icon indicating copy to clipboard operation
Notes copied to clipboard

d3学习笔记

Open any86 opened this issue 4 years ago • 1 comments

any86 avatar May 06 '20 06:05 any86

D3中常用的比例尺

摘要

domianrange配合实现比例映射

var scaleLinear = d3.scaleLinear().domain([100,200]).range([0, 400]);
console.log(scaleLinear(101),scaleLinear(200)); // 4 , 400

参考

https://segmentfault.com/a/1190000011006780

any86 avatar May 06 '20 06:05 any86