in Source/Charts/Utils/Platform+Touch Handling.swift [124:132]
func locationInView(view: NSView) -> NSPoint
{
let n = self.normalizedPosition
let b = view.bounds
return NSPoint(
x: b.origin.x + b.size.width * n.x,
y: b.origin.y + b.size.height * n.y
)
}