Is there a way to get the Miles measure unit to display with decimal miles instead of rounding the preceding integer? I want it to display each segment and total in decimal miles (example 1.25).
use:Math.Round(value, 2);
The precision of the output is based on the zoom scale you are at. Basically the more you zoom in, the more accurate you are measuring, and more decimals will be shown. So in other words: It only shows the number of significant digits. Showing anything more than that would be misleading.