Skip to content

Commit

Permalink
Added pointer cursor to ScatterPlot circles
Browse files Browse the repository at this point in the history
Signed-off-by: Navaneeth Rao <32010211+navaneeth-dev@users.noreply.github.com>
  • Loading branch information
navaneeth-dev committed Jan 26, 2025
1 parent 8c3ae1e commit d8e85eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default function ScatterPlot(props) {
onClick={onValueClick}
>
{data.map(entry => (
<Cell key={`cell-${entry.traceID}`} fill={entry.color} />
<Cell key={`cell-${entry.traceID}`} fill={entry.color} style={{ cursor: "pointer" }} />
))}
</Scatter>

Expand Down

0 comments on commit d8e85eb

Please sign in to comment.