00001
00002
00003
00004
00005
00006
00007 package org.swtchart;
00008
00009 import org.eclipse.swt.graphics.Color;
00010 import org.eclipse.swt.graphics.Font;
00011 import org.eclipse.swt.graphics.Rectangle;
00012
00016 public interface ILegend {
00017
00024 void setVisible(boolean visible);
00025
00031 boolean isVisible();
00032
00039 void setBackground(Color color);
00040
00046 Color getBackground();
00047
00054 void setForeground(Color color);
00055
00061 Color getForeground();
00062
00068 Font getFont();
00069
00076 void setFont(Font font);
00077
00083 int getPosition();
00084
00095 void setPosition(int position);
00096
00114 Rectangle getBounds(String seriesId);
00115 }