Creating the point scale with specified domain and range. var point = d3.scalePoint() .domain([1, 2, 3, 4]) .range([1, 5]); var copyScale = point.copy(); ...
確定! 回上一頁