Skip to content

Commit

Permalink
fix hit test id
Browse files Browse the repository at this point in the history
  • Loading branch information
illetid committed Aug 29, 2024
1 parent 59bcde2 commit 4c1bd40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/series-markers/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class SeriesMarkersRenderer implements IPrimitivePaneRenderer {
if (item && hitTestItem(item, x as Coordinate, y as Coordinate)) {
return {
zOrder: 'normal',
externalId: String(item.internalId),
externalId: item.externalId ?? '',
};
}
}
Expand Down

0 comments on commit 4c1bd40

Please sign in to comment.