tags:

views:

64

answers:

2

How should I best approach drawing a scatter plot diagram in Cocoa?

+5  A: 

I believe Core Plot offers scatter plots.

Joshua Nozzi
+2  A: 

You will probably want to create a custom subclass of NSView and override the drawRect: method.

You can draw primitives using many of NSBezierPath's class methods such as bezierPathWithOvalInRect: and strokeLineFromPoint:toPoint:

cobbal