TAChart: Use "nice" TListChartSource floating point numbers in data point editor and lfm file. Issue #35374, patch by Marcin Wiazowski.

git-svn-id: trunk@60961 -
This commit is contained in:
wp 2019-04-13 22:06:33 +00:00
parent 5271081bea
commit a154d474bd

View File

@ -319,7 +319,7 @@ function TListChartSourceStrings.Get(Index: Integer): String;
if IsNaN(AValue) then
Result := '|'
else
Result := Format('%g|', [AValue], DefSeparatorSettings);
Result := FloatToStr(AValue, DefSeparatorSettings) + '|';
end;
var