mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 14:01:49 +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
|
if IsNaN(AValue) then
|
||||||
Result := '|'
|
Result := '|'
|
||||||
else
|
else
|
||||||
Result := Format('%g|', [AValue], DefSeparatorSettings);
|
Result := FloatToStr(AValue, DefSeparatorSettings) + '|';
|
||||||
end;
|
end;
|
||||||
|
|
||||||
var
|
var
|
||||||
|
Loading…
Reference in New Issue
Block a user