mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 03:16:10 +02:00
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:
parent
5271081bea
commit
a154d474bd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user