diff --git a/CHANGELOG.md b/CHANGELOG.md index b262503f2..29a6a5205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Respected the current date in the _FIRE_ calculator - Simplified the settings management in the admin control panel - Renamed the data source type `RAKUTEN` to `RAPID_API` diff --git a/libs/ui/src/lib/fire-calculator/fire-calculator.component.ts b/libs/ui/src/lib/fire-calculator/fire-calculator.component.ts index 8ef10eca2..91822e6eb 100644 --- a/libs/ui/src/lib/fire-calculator/fire-calculator.component.ts +++ b/libs/ui/src/lib/fire-calculator/fire-calculator.component.ts @@ -51,8 +51,6 @@ export class FireCalculatorComponent @ViewChild('chartCanvas') chartCanvas; - private readonly CONTRIBUTION_PERIOD = 12; - public calculatorForm = this.formBuilder.group({ annualInterestRate: new FormControl(undefined), paymentPerPeriod: new FormControl(undefined), @@ -63,6 +61,7 @@ export class FireCalculatorComponent public isLoading = true; public projectedTotalAmount: number; + private readonly CONTRIBUTION_PERIOD = 12; private unsubscribeSubject = new Subject(); public constructor( @@ -235,6 +234,7 @@ export class FireCalculatorComponent grid: { display: false }, + position: 'right', stacked: true, ticks: { callback: (value: number) => { diff --git a/libs/ui/src/lib/line-chart/line-chart.component.ts b/libs/ui/src/lib/line-chart/line-chart.component.ts index 087f961b2..aadfde80d 100644 --- a/libs/ui/src/lib/line-chart/line-chart.component.ts +++ b/libs/ui/src/lib/line-chart/line-chart.component.ts @@ -231,8 +231,8 @@ export class LineChartComponent implements AfterViewInit, OnChanges, OnDestroy { }, max: this.yMax, min: this.yMin, + position: 'right', ticks: { - display: this.showYAxis, callback: (tickValue, index, ticks) => { if (index === 0 || index === ticks.length - 1) { // Only print last and first legend entry @@ -254,6 +254,7 @@ export class LineChartComponent implements AfterViewInit, OnChanges, OnDestroy { return ''; }, + display: this.showYAxis, mirror: true, z: 1 },