10-28-2010 02:04 PM
I am using Measurement Studio 2009 (C#) to display waveform graphs.
How can I format the major division labels of an XAxis (or YAxis) such that:
- A value of 1000 will display as "1k".
- A value of 0.001 will display as "1m".
- etc.
What I am looking for is equivalent to the following in Measurement Studio 8 (C++)
- CNiAxis::FormatString = "k"
- This was called 'symbolic notation'.
I looked into .MajorDivisions.LabelFormat but I'm not quite sure how to make this do what I'm looking for.
Any advice would be greatly appreciated. Thank you.
Solved! Go to Solution.
10-28-2010 02:39 PM
You should try somthing like:
NickB
National Instruments
10-29-2010 03:18 PM
Thank you. That was just what I was looking for. Much obliged.