feat: ISO, RSL und TDR separate Charts ohne den Switcher

This commit is contained in:
ISA
2025-07-28 13:39:46 +02:00
parent 7a9fbc97dd
commit ce1dacda9b
15 changed files with 612 additions and 263 deletions

View File

@@ -2,7 +2,7 @@
import React from "react";
interface CustomTooltipProps {
interface IsoCustomTooltipProps {
active?: boolean;
payload?: Array<{
dataKey: string;
@@ -16,7 +16,7 @@ interface CustomTooltipProps {
unit?: string;
}
const CustomTooltip: React.FC<CustomTooltipProps> = ({
const IsoCustomTooltip: React.FC<IsoCustomTooltipProps> = ({
active,
payload,
label,
@@ -67,4 +67,4 @@ const CustomTooltip: React.FC<CustomTooltipProps> = ({
return null;
};
export default CustomTooltip;
export default IsoCustomTooltip;