LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Graph Multi Y-Axis

Is there a way to add y-axis to a CVI Graph?

I want to have multi Y-axis on both the right and left side of a graph.

 

0 Kudos
Message 1 of 5
(3,120 Views)

Did you have a look at Roberto's contribution here ?

0 Kudos
Message 2 of 5
(3,117 Views)

I haven't but I will. Thanks for the reply

0 Kudos
Message 3 of 5
(3,114 Views)

I work with two left and right Y-axis. No problem.

 

SetCtrlAttribute( , , ATTR_ACTIVE_YAXIS, VAL_RIGHT_YAXIS);

SetCtrlAttribute( , , ATTR_YLABEL_VISIBLE, 1);

 

Now the right axis is visible

 

SetAxisScallingMode( , , VAL_RIGHT_YAXIS, VAL_MANUAL, 0.0, 1000.0);

 

But i don't known how i save a waveform in file and than read the file in chart.

 

Vaal

0 Kudos
Message 4 of 5
(3,095 Views)

This is a completely different question from the one that originated the thread: you should create a new question for it.

The easiest way to save a waveform (presumably an array of data) to file is probably ArrayToFile (). Similarly, you can read back the data with FileToArray (). Search in the help for the functions some explanation on their use.



Proud to use LW/CVI from 3.1 on.

My contributions to the Developer Community
________________________________________
If I have helped you, why not giving me a kudos?
0 Kudos
Message 5 of 5
(3,085 Views)