Various improvements

This commit is contained in:
Ilya Laktyushin
2025-12-01 19:54:58 +04:00
parent b04eee8289
commit 6bc1fe1939
71 changed files with 4405 additions and 643 deletions

View File

@@ -371,7 +371,7 @@ class GeneralChartComponentController: ChartThemeContainer {
values.append(ChartDetailsViewModel.Value(
prefix: nil,
title: self.strings.revenueInUsd,
value: "$\(convertedValueString)",
value: "~$\(convertedValueString)",
color: color,
visible: firstValue.visible
))

View File

@@ -161,7 +161,7 @@ class BarsComponentController: GeneralChartComponentController {
} else {
text = String(format: "%0.3f", convertedValue)
}
updatedLabels.append(LinesChartLabel(value: label.value, text: "$\(text)"))
updatedLabels.append(LinesChartLabel(value: label.value, text: "~$\(text)"))
}
labels = updatedLabels
}