Chartjs-HighlightFill for radar charts in chartJS

1👍

A radar chart is different from the bar chart in that, an area is actually an entire series (for bar chart it is a single data point).

When you get a radar tooltip, and you think about what area of the chart it represents, you realize that it basically represents just 2 points radiating from the center. The area between 2 points of a series is actually shared between them. Highlighting half the area would not look nice either.

enter image description here

Add to that, the fact that one radar chart series could be completely covered by the 2nd one, I can’t think of a non-confusing way to have a hover highlight for a radar chart (just think of how you would do highlighting for a line chart area – you don’t. You do it only for a point)

enter image description here

Leave a comment