add boxplot chart in reconciliation statement dialog

This commit is contained in:
MaysWind
2026-03-08 23:33:46 +08:00
parent d601e01029
commit edcf33f49c
25 changed files with 159 additions and 15 deletions
+2 -1
View File
@@ -88,7 +88,8 @@ export class AccountBalanceTrendChartType implements TypeAndName {
public static readonly Area = new AccountBalanceTrendChartType(0, 'Area Chart');
public static readonly Column = new AccountBalanceTrendChartType(1, 'Column Chart');
public static readonly Candlestick = new AccountBalanceTrendChartType(2, 'Candlestick Chart');
public static readonly Boxplot = new AccountBalanceTrendChartType(2, 'Boxplot Chart');
public static readonly Candlestick = new AccountBalanceTrendChartType(3, 'Candlestick Chart');
public static readonly Default = TrendChartType.Column;