You make a VI with a shift register that you initialize with a start value and the increase you want to detect added to that valuein a case within the loop for initialization. You then have another case where you check whether the current value is above the value stored in the shift register...if it is, add the increase value once again to the shift register value and the next time it will check for an increase above that step...
Now call that VI first with the case selector set to init, and then call it everytime a new value is sampled with the case set to detect increases...
I have attached a simple example, run the demo.vi in the library and you'll see that everytime the simulated value has jumped "10 mA" it runs a case...which here shows a dialog box
.
I have attached