我的代碼:如何確定一個類型的動態縮放功能的?
let scale = d3.scale.log();
//How to determine that 'scale' variable is a logarithmic scaling function?
scale = d3.scale.ordinal();
//In this case how to determine that 'scale' variable is an ordinal scaling function?
是否有一個尺度函數的一些屬性或一些方法,可以幫助我嗎? 我需要爲了繪製HTML畫布API秤特定的軸系此信息。
量均衡器只是功能並沒有與規模的功能相關的屬性,以確定它是什麼樣的。也就是說,即使有找到規模類型的方法,您也應該考慮替代方案。你的用例是什麼? – Ankit
@Ankit http://stackoverflow.com/questions/35726692/how-to-determine-a-type-of-a-scaling-function-dynamically/35727330?noredirect=1#comment59134027_35727330 –