codeant-ai-for-open-source[bot] commented on PR #37293:
URL: https://github.com/apache/superset/pull/37293#issuecomment-3774493887
## **Sequence Diagram**
When a chart title is truncated, hovering shows a tooltip that queries
applied dashboard filters (via a new useAppliedFilterIndicators hook) and
displays the filters count and list. This diagram captures the main success
path added by the PR.
```mermaid
sequenceDiagram
participant User
participant ChartTitle
participant useAppliedFilterIndicators
participant DashboardStore
participant Tooltip
User->>ChartTitle: Hover truncated title
ChartTitle->>useAppliedFilterIndicators: Request applied filter
indicators
useAppliedFilterIndicators->>DashboardStore: Read active dashboard
filters
DashboardStore-->>useAppliedFilterIndicators: Applied filters (count +
details)
useAppliedFilterIndicators-->>ChartTitle: Return filter count & list
ChartTitle->>Tooltip: Render tooltip with filter count and filter list
Tooltip-->>User: Show tooltip (filter summary)
```
---
*Generated by [CodeAnt AI](https://codeant.ai)*
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]