TAChart: Fix TLegendColumnCount to allow value 0

This commit is contained in:
wp_xyz 2024-09-27 19:32:53 +02:00
parent ce366cd5f4
commit 7d011b8465

View File

@ -172,7 +172,7 @@ type
FRowCount: Integer;
end;
TLegendColumnCount = 1..MaxInt;
TLegendColumnCount = 0..MaxInt;
TLegendItemFillOrder = (lfoColRow, lfoRowCol);
TChartLegendGridPen = class(TChartPen)