d3 graph with limited zoom

前端 未结 2 1931
小蘑菇
小蘑菇 2021-01-14 15:52

I have implemented a d3 line graph which reads data from a CSV file, and then plots multiple lines which react to mouseover events. It works fine with pan and zoom using the

2条回答
  •  误落风尘
    2021-01-14 16:28

    You can simply check the value manually and reset it if it is too high:

    if(tx > threshold) { tx = threshold; }
    

    Also, the statements

    d3.event.translate;
    d3.event.scale;
    

    in your code have no effect.

提交回复
热议问题