root/plot/Pybrary.Plot/LegendEntry.cs

Revision 746, 249 bytes (checked in by mfenniak, 2 years ago)

--

Line 
1 using System;
2 using System.Drawing;
3
4 namespace Pybrary.Plot
5 {
6     public interface LegendEntry
7     {
8         SizeF CalculateSize(Graphics g, string seriesName);
9         void Draw(Graphics g, AdvancedRect area, string seriesName);
10     }
11 }
Note: See TracBrowser for help on using the browser.