diff --git a/nise-frontend/src/corelib/components/chart-hit-distribution/chart-hit-distribution.component.ts b/nise-frontend/src/corelib/components/chart-hit-distribution/chart-hit-distribution.component.ts index 7ad7c73..107ffdf 100644 --- a/nise-frontend/src/corelib/components/chart-hit-distribution/chart-hit-distribution.component.ts +++ b/nise-frontend/src/corelib/components/chart-hit-distribution/chart-hit-distribution.component.ts @@ -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 = []; diff --git a/nise-frontend/src/corelib/components/chart/chart.component.ts b/nise-frontend/src/corelib/components/chart/chart.component.ts index d7e05f1..dda9073 100644 --- a/nise-frontend/src/corelib/components/chart/chart.component.ts +++ b/nise-frontend/src/corelib/components/chart/chart.component.ts @@ -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) {