FPSpreadsheet: Fix 'General" number format for xlsx chart reader

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9457 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2024-09-20 18:17:55 +00:00
parent 516e543ce3
commit 6f88439cd1

View File

@ -412,6 +412,9 @@ begin
AChartAxis.DateTime := true;
AChartAxis.LabelFormatDateTime := s;
end else
if s = 'General' then
AChartAxis.LabelFormat := ''
else
AChartAxis.LabelFormat := s;
end;
end;