I have a BufferedGraphics
instance and I draw some graphs on it. I'd like to create a function called DrawLegends
that takes an instance of BufferedGraphics
and draws two strings as legend.
I can create a PointF
instance that points to (0, 0), but I want to put the legend on the bottom. How should I proceed with that? Can I do it with the BufferedGraphics
instance or would I also need the panel that I'm drawing on?