dygraphs - Limiting the range of y-axis -



dygraphs - Limiting the range of y-axis -

i have values on y-axis 0.0 1.0, i'm interested in 0.0 - 0.4. there way show points in range 0.0-0.4? know dygraphs has horizontal zoom. great have when load graph.

thanks

you want valuerange option. if specify in constructor, restrict range of y-axis on initial draw:

new dygraph(div, data, { valuerange: [0, 0.4] });

dygraphs

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

ruby on rails - Devise Logout Error in RoR -

c# - Create a Notification Object (Email or Page) At Run Time -- Dependency Injection or Factory -