UI: Refactoring show total value in legend

This commit is contained in:
Vladyslav_Prykhodko 2025-09-30 13:52:05 +03:00
parent 8a6015f04e
commit d989d1e7d7
10 changed files with 23 additions and 16 deletions

View File

@ -144,9 +144,11 @@
</tb-color-input> </tb-color-input>
</div> </div>
</div> </div>
<mat-slide-toggle class="mat-slide flex items-stretch justify-left" formControlName="legendShowTotal" (click)="$event.stopPropagation()"> <div class="tb-form-row">
<mat-slide-toggle class="mat-slide" formControlName="legendShowTotal">
{{ 'legend.show-total' | translate }} {{ 'legend.show-total' | translate }}
</mat-slide-toggle> </mat-slide-toggle>
</div>
</ng-template> </ng-template>
</mat-expansion-panel> </mat-expansion-panel>
</div> </div>

View File

@ -68,6 +68,7 @@ export const barChartWidgetBarsChartSettings = (settings: BarChartWidgetSettings
showTotal: false, showTotal: false,
animation: settings.animation, animation: settings.animation,
showLegend: settings.showLegend, showLegend: settings.showLegend,
legendShowTotal: settings.legendShowTotal,
showTooltip: settings.showTooltip, showTooltip: settings.showTooltip,
tooltipValueType: settings.tooltipValueType, tooltipValueType: settings.tooltipValueType,
tooltipValueDecimals: settings.tooltipValueDecimals, tooltipValueDecimals: settings.tooltipValueDecimals,

View File

@ -88,6 +88,7 @@ export const doughnutPieChartSettings = (settings: DoughnutWidgetSettings): Deep
showTotal: settings.layout === DoughnutLayout.with_total, showTotal: settings.layout === DoughnutLayout.with_total,
animation: settings.animation, animation: settings.animation,
showLegend: settings.showLegend, showLegend: settings.showLegend,
legendShowTotal: settings.legendShowTotal,
totalValueFont: settings.totalValueFont, totalValueFont: settings.totalValueFont,
totalValueColor: settings.totalValueColor, totalValueColor: settings.totalValueColor,
showLabel: false, showLabel: false,

View File

@ -82,8 +82,7 @@ export class LatestChartComponent implements OnInit, OnDestroy, AfterViewInit {
padding: string; padding: string;
get legendItems(): LatestChartLegendItem[] { get legendItems(): LatestChartLegendItem[] {
let items = this.latestChart ? this.latestChart.getLegendItems() : []; return this.latestChart ? this.latestChart.getLegendItems() : [];
return this.legendShowTotal ? items : items.filter(item => !item.total);
} }
legendLabelStyle: ComponentStyle; legendLabelStyle: ComponentStyle;
@ -93,7 +92,6 @@ export class LatestChartComponent implements OnInit, OnDestroy, AfterViewInit {
private shapeResize$: ResizeObserver; private shapeResize$: ResizeObserver;
private legendHorizontal: boolean; private legendHorizontal: boolean;
private legendShowTotal: boolean;
private latestChart: TbLatestChart<LatestChartSettings>; private latestChart: TbLatestChart<LatestChartSettings>;
@ -121,7 +119,6 @@ export class LatestChartComponent implements OnInit, OnDestroy, AfterViewInit {
this.legendValueStyle = textStyle(this.settings.legendValueFont); this.legendValueStyle = textStyle(this.settings.legendValueFont);
this.disabledLegendValueStyle = textStyle(this.settings.legendValueFont); this.disabledLegendValueStyle = textStyle(this.settings.legendValueFont);
this.legendValueStyle.color = this.settings.legendValueColor; this.legendValueStyle.color = this.settings.legendValueColor;
this.legendShowTotal = this.settings.legendShowTotal;
} }
} }

View File

@ -87,6 +87,7 @@ export interface LatestChartSettings extends LatestChartTooltipSettings {
sortSeries: boolean; sortSeries: boolean;
showTotal?: boolean; showTotal?: boolean;
showLegend: boolean; showLegend: boolean;
legendShowTotal: boolean;
animation: ChartAnimationSettings; animation: ChartAnimationSettings;
} }
@ -96,6 +97,7 @@ export const latestChartDefaultSettings: LatestChartSettings = {
sortSeries: false, sortSeries: false,
showTotal: false, showTotal: false,
showLegend: true, showLegend: true,
legendShowTotal: true,
animation: mergeDeep({} as ChartAnimationSettings, chartAnimationDefaultSettings) animation: mergeDeep({} as ChartAnimationSettings, chartAnimationDefaultSettings)
}; };
@ -105,14 +107,12 @@ export interface LatestChartWidgetSettings extends LatestChartSettings {
legendLabelColor: string; legendLabelColor: string;
legendValueFont: Font; legendValueFont: Font;
legendValueColor: string; legendValueColor: string;
legendShowTotal: boolean;
background: BackgroundSettings; background: BackgroundSettings;
padding: string; padding: string;
} }
export const latestChartWidgetDefaultSettings: LatestChartWidgetSettings = { export const latestChartWidgetDefaultSettings: LatestChartWidgetSettings = {
...latestChartDefaultSettings, ...latestChartDefaultSettings,
showLegend: true,
legendPosition: LegendPosition.bottom, legendPosition: LegendPosition.bottom,
legendLabelFont: { legendLabelFont: {
family: 'Roboto', family: 'Roboto',
@ -132,7 +132,6 @@ export const latestChartWidgetDefaultSettings: LatestChartWidgetSettings = {
lineHeight: '20px' lineHeight: '20px'
}, },
legendValueColor: 'rgba(0, 0, 0, 0.87)', legendValueColor: 'rgba(0, 0, 0, 0.87)',
legendShowTotal: true,
background: { background: {
type: BackgroundType.color, type: BackgroundType.color,
color: '#fff', color: '#fff',

View File

@ -36,6 +36,7 @@ import { ValueFormatProcessor } from '@shared/models/widget-settings.models';
export abstract class TbLatestChart<S extends LatestChartSettings> { export abstract class TbLatestChart<S extends LatestChartSettings> {
private readonly shapeResize$: ResizeObserver; private readonly shapeResize$: ResizeObserver;
private showTotalValueInLegend: boolean;
protected readonly settings: S; protected readonly settings: S;
@ -121,7 +122,8 @@ export abstract class TbLatestChart<S extends LatestChartSettings> {
this.legendItems.sort((a, b) => a.label.localeCompare(b.label)); this.legendItems.sort((a, b) => a.label.localeCompare(b.label));
} }
} }
if (this.settings.showLegend && !this.settings.showTotal) { this.showTotalValueInLegend = this.settings.showLegend && !this.settings.showTotal && this.settings.legendShowTotal;
if (this.showTotalValueInLegend) {
this.legendItems.push( this.legendItems.push(
{ {
value: '--', value: '--',
@ -252,11 +254,11 @@ export abstract class TbLatestChart<S extends LatestChartSettings> {
if (this.settings.showTotal || this.settings.showLegend) { if (this.settings.showTotal || this.settings.showLegend) {
if (hasValue) { if (hasValue) {
this.totalText = this.valueFormatter.format(this.total); this.totalText = this.valueFormatter.format(this.total);
if (this.settings.showLegend && !this.settings.showTotal) { if (this.showTotalValueInLegend) {
this.legendItems[this.legendItems.length - 1].hasValue = true; this.legendItems[this.legendItems.length - 1].hasValue = true;
this.legendItems[this.legendItems.length - 1].value = this.totalText; this.legendItems[this.legendItems.length - 1].value = this.totalText;
} }
} else if (this.settings.showLegend && !this.settings.showTotal) { } else if (this.showTotalValueInLegend) {
this.legendItems[this.legendItems.length - 1].hasValue = false; this.legendItems[this.legendItems.length - 1].hasValue = false;
this.legendItems[this.legendItems.length - 1].value = '--'; this.legendItems[this.legendItems.length - 1].value = '--';
} }

View File

@ -64,6 +64,7 @@ export const pieChartWidgetPieChartSettings = (settings: PieChartWidgetSettings)
showTotal: false, showTotal: false,
animation: settings.animation, animation: settings.animation,
showLegend: settings.showLegend, showLegend: settings.showLegend,
legendShowTotal: settings.legendShowTotal,
showLabel: settings.showLabel, showLabel: settings.showLabel,
labelPosition: settings.labelPosition, labelPosition: settings.labelPosition,
labelFont: settings.labelFont, labelFont: settings.labelFont,

View File

@ -72,6 +72,7 @@ export const polarAreaChartWidgetBarsChartSettings = (settings: PolarAreaChartWi
showTotal: false, showTotal: false,
animation: settings.animation, animation: settings.animation,
showLegend: settings.showLegend, showLegend: settings.showLegend,
legendShowTotal: settings.legendShowTotal,
showTooltip: settings.showTooltip, showTooltip: settings.showTooltip,
tooltipValueType: settings.tooltipValueType, tooltipValueType: settings.tooltipValueType,
tooltipValueDecimals: settings.tooltipValueDecimals, tooltipValueDecimals: settings.tooltipValueDecimals,

View File

@ -135,6 +135,7 @@ export const radarChartWidgetRadarChartSettings = (settings: RadarChartWidgetSet
showTotal: false, showTotal: false,
animation: settings.animation, animation: settings.animation,
showLegend: settings.showLegend, showLegend: settings.showLegend,
legendShowTotal: settings.legendShowTotal,
showTooltip: settings.showTooltip, showTooltip: settings.showTooltip,
tooltipValueType: settings.tooltipValueType, tooltipValueType: settings.tooltipValueType,
tooltipValueDecimals: settings.tooltipValueDecimals, tooltipValueDecimals: settings.tooltipValueDecimals,

View File

@ -61,9 +61,11 @@
</tb-color-input> </tb-color-input>
</div> </div>
</div> </div>
<mat-slide-toggle class="mat-slide flex items-stretch justify-left" formControlName="legendShowTotal" (click)="$event.stopPropagation()"> <div class="tb-form-row">
<mat-slide-toggle class="mat-slide" formControlName="legendShowTotal">
{{ 'legend.show-total' | translate }} {{ 'legend.show-total' | translate }}
</mat-slide-toggle> </mat-slide-toggle>
</div>
</ng-template> </ng-template>
</mat-expansion-panel> </mat-expansion-panel>
</div> </div>