This question is locked. New answers and comments are not allowed.
My databinding occurs on the client side but I am setting up the ValueAxis in the view.
e.g.
When a user adds a new value that affect the graph, I simply call rebind on the client side. This of course doesn't get to my code where I setup the ValueAxis. One of the things I do in SetupValueAxis is to set my min and max values.
Is it possible to setup Min / Max on the client side for the ValueAxis?
e.g.
.ValueAxis(axis => Model.SetupValueAxis(axis)).DataBinding(db => db .Ajax().Select("GraphPoints", "Biometric"))When a user adds a new value that affect the graph, I simply call rebind on the client side. This of course doesn't get to my code where I setup the ValueAxis. One of the things I do in SetupValueAxis is to set my min and max values.
Is it possible to setup Min / Max on the client side for the ValueAxis?