How do you modify a waveform graph in labview to display the time axis in milliseconds instead of seconds?

StackOverflow https://stackoverflow.com/questions/15723077

  •  30-03-2022
  •  | 
  •  

In the following LabView diagram:

enter image description here

The waveform I get looks triangular, but I am expecting it to look more like square pulse waves. How can I change the time axis to display in milliseconds instead of seconds?

有帮助吗?

解决方案

You can change the display of the x-format to %<%3u>T, this is selectable from the properties.

enter image description here

This however will add a decmal sign to the timestamp.

其他提示

I don't think you can, but you can change the display format of the X-axis. Right-click on the indicator, select Properties and, on the Display Format tab, set the type to Floating point, Digits to 3 and Precision Type to Digits of precision. Then, double-click the 0.1 on your X-axis and set it to 0.001. You can make the X scrollbar visible to be able to see the whole graph.

You also appear to have missed the point on the selected frequency and width indicators in another post. You don't need them; you can make the Digital Display visible.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top