Solved! Go to Solution.
<mx:NumberFormatter id="numFormatter" precision="{numPrecision}" useThousandsSeparator="true"/>
Is there a way to modify the number of decimal points for the "show measurements" option when a point is clicked?
<mx:NumberFormatter id="numFormatterMeasure" precision="2" useThousandsSeparator="false"/>
private function createLengthsLabel(length:Number, lengthAbbrev:String):String { return lengthLabel + " " + numFormatterMeasure.format(length) + " " + lengthAbbrev; }
<mx:NumberFormatter id="numFormatter" precision="{numPrecision}" useThousandsSeparator="true"/>