Is it possible to select Canvas 'elements' like specific arc's within a Canvas? Are they stored in an array?
JSBin Example
My end goal is to select each circle, add a hover event, and show text relating to the circle that is hovered on. I'm wondering if I can access the arc's in an array like structure.
getContext('2d').context.arc[0].mouseenter is something I'm going for.
Is some interaction like this possible on the Canvas object?