09-20-2017 07:30 AM
Hi @ll
I use wpf graph with autoscale functionality.
on my X-Axis I show double values which will be dispalayed as e. g. 869.52 ...889.53...869.64 etc.
when this values have more then 3 digits behind the point the scale shows sometimes: 8.69E2 etc (instead 869.564)...how can I avoid that ?
BR
KebMo
Solved! Go to Solution.
09-20-2017 02:10 PM
You can control the format of the division labels through the LabelPresenter property on the MajorDivisions of the axis. For example, the presenter can accept any of the Standard Numeric Format Strings:
<ni:AxisDouble Orientation="Horizontal">
<ni:AxisDouble.MajorDivisions>
<ni:RangeLabeledDivisions LabelPresenter="G" />
</ni:AxisDouble.MajorDivisions>
</ni:AxisDouble>
09-22-2017 07:53 AM
Hi Paul,
perfekt..it works ,,,,Thanks for your help
BR
KebMo