11-27-2009 10:41 AM
Hi ,
when i try to change in NumericFormatMode.CreateEngineeringMode("S'Hz'") in waveformGraph it doesn't show Hz but show only the number
Code :
waveformGraph1.XAxes[0].EditRangeNumericFormatMode = NumericFormatMode.CreateEngineeringMode("S'Hz'");
Example :
120000000 Hz 120Mhz
Output:
1,2E+08
What's up?
Thanks in advance
Simone
11-30-2009 03:32 AM
Solution:
xAxis1.MajorDivisions.LabelFormat = new FormatString(FormatStringMode.Engineering , "S'Hz'");
Thanks
Simone
11-30-2009 03:51 AM