NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

display waveform in report

Hi,
I have an labview output waverform which consists of 6 signals. I want to display this waveform in the report. I modidifed the custom step type to display. But my report displays these waveforms as individual images.
 
I want one waverform in the report showing all the signals just like labview waveform display.
 
I have attached the seq file for reference.
 
Regards
Gopal
0 Kudos
Message 1 of 2
(3,559 Views)
TestStand does not have a way of combining these waveforms into one graph out of box. You would need to create this image (from LabVIEW) and then modify the report generation to add that image to the report. The reason for this, is TestStand does not actually contain graphs or other controls (since it is not a programming language for that) and these reports are just displaying images (as XML/HTML by themselves can not graph data). So you would need to save an image of the graph programmatically in your LabVIEW code module (or possibly with a substep?) and then pass the path to that image to TestStand for use in the report. You would then need to modify the report generation (either the C code if you are using DLL or the sequence itself if it is using Sequence for report generation) to place that image on the report. If you are using XML you can only use the C code and then rebuild it into a DLL.

Brandon Vasquez | Software Engineer | Integration Services | National Instruments
Message 2 of 2
(3,547 Views)