04-07-2010 07:43 PM
I want to programatically select between the two types of x axis on my waveform chart.
1) Absolute time---> Custom Time Format-->AM/PM and HH:MM:SS
2) SI Notation with 3 Digits (Digits of Precision) and Hide Trailing Zeros selected.
Does anyone know the property names for these attributes of the waveform chart? I tried looking into the list that come up when you make a property node for waveform chart. But I could not find it. I think I am certainly missing it.
BTW, I have 2 waveforms in the same waveform chart.
Solved! Go to Solution.
04-07-2010 09:20 PM
04-07-2010 11:39 PM
I found the following codes for the format as follows:
%<%I:%M:%S %p>T ---- For absolute time
%#.3p ---- For relative times....
I think the above format as string will be inputted to XScale.FormatString. I might not require Precision since, its already coded inside the format string.
Can you let me know what do I require for Xscale.format (integer required)?
04-07-2010 11:44 PM
Neuropotential wrote:
Can you let me know what do I require for Xscale.format (integer required)?
Turn on context help and hover over that property node. It will tell you what each integer actually means for that property node.
04-08-2010 10:15 AM