I'd say that is a limitation and no built-in configuration exists right now.
However, as a workaround, maybe you could filter hierarchy levels by adding dashboard parameters/filters in an additive way. With that filter in place, you could select set of levels to show (1, 2, ..., All or combinations) being "1" the default value. Not sure if this solves your issue or could arise other usability concerns as I don't have the full context. In any case, you should update your underlying query to include the hierarchy level, which is easy by using recursive CTE SQL queries:
WITH RECURSIVE hierarchy AS (
-- Root level
SELECT
id,
parent_id,
name,
1 AS hierarchy_level
FROM accounts
WHERE parent_id IS NULL
UNION ALL
-- Children
SELECT
a.id,
a.parent_id,
a.name,
h.hierarchy_level + 1
FROM accounts a
JOIN hierarchy h
ON a.parent_id = h.id
)
SELECT *
FROM hierarchy;