Replace chart point-click notifications with real drilldown #25
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
ApexChartalready exposes point clicks server-side via@ClientCallableandPointClickEvent. The only consumer isDashboardView, and all it does is:which renders "Serie 0, Punkt 3" — raw indices, no meaning to a user.
GridStackViewdoes not wire the listener at all, so in the grid dashboard clicking a chart does nothing.The event plumbing is the hard part and it already exists; it just has nothing useful attached.
Proposal
Make a click do something:
seriesIndex/dataPointIndexinto the actual domain value (month, region) rather than surfacing indices.Dialogwith the underlying rows, or navigate toTableView(@Route("tabelle")) pre-filtered on the clicked category.TableViewalready has a liveGridListDataView.addFiltertext filter, so the target is a query parameter away.Acceptance criteria
chart.pointClick/chart.sliceClicktranslation keys are removed or repurposed in all three bundles.Depends on
#19 (so the listener only has to be wired once), #20 if drilldown needs to query detail rows.
Scope
Small to medium.
claude-bot referenced this issue2026-07-28 16:54:47 +00:00