Hello.
I am assuming you have the data you are acquiring connected to a waveform chart which has the y-axis set to auto-scale, so you are expecting to be able to get the maximum value of your data by getting the maximum value of the range of the y-axis of the graph.
If this is what you want to do, you need to right-click on the graph, and select Create > Property Node. With the selection tool, click on the property node and select Y-Scale > Range > Maximum. Connect an indicator to the output of that property node, and you will get the numerical value you are looking for.
You must note, however, that this value is just an approximation of the data point with the highest value (the maximum range is almost always a bit higher than the maximum data poin
t), and it is not always a very close approximation. Thus, it seems like a better idea to monitor the data directly, instead of the range of the chart.
If you are getting the data in an array (which I don't think so, since you are using a chart instead of a waveform graph, but anyway, just in case) you can use the "Array Max & Min" function located in the third row of the array functions sub-palette.
If you are getting the data one point at a time, you can have a shift-register with the highest point until now, and with each iteration compare the contents of the shift register with the new data point, using the "Max & Min" function located in the 3rd row of the comparison sub-palette, and connecting the "maximum" output of this function to the right side of the shift register. I am including an image showing what I mean.
Hope this helps.
AlejandroZ