recharts#TooltipPayload TypeScript Examples

The following examples show how to use recharts#TooltipPayload. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: graphs.ts    From backstage with Apache License 2.0 6 votes vote down vote up
tooltipItemOf = (payload: TooltipPayload) => {
  const value =
    typeof payload.value === 'number'
      ? currencyFormatter.format(payload.value)
      : (payload.value as string);
  const fill = payload.fill as string;

  switch (payload.dataKey) {
    case DataKey.Current:
    case DataKey.Previous:
      return {
        label: payload.name,
        value: value,
        fill: fill,
      };
    default:
      return null;
  }
}