Sync sansei branch #1

Merged
Stedos merged 34 commits from sansei into main 2025-02-24 21:12:28 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 2a0b290211 - Show all commits

View File

@ -23,8 +23,8 @@ export class ChartHitDistributionComponent implements OnInit, OnChanges {
@Input() mods!: string[];
removeOutliers = true;
groupData = true;
showPercentages = true;
groupData = false;
showPercentages = false;
public barChartLegend = true;
public barChartPlugins = [];

View File

@ -43,8 +43,8 @@ export class ChartComponent implements OnChanges {
@Input() data!: number[];
removeOutliers = true;
groupData = true;
showPercentages = true;
groupData = false;
showPercentages = false;
calculateStatistics(): Array<{ name: string, value: number }> {
if (this.data.length === 0) {