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
00015 public interface ISeriesLabel {
00016
00028 void setFormat(String format);
00029
00035 String getFormat();
00036
00045 void setFormats(String[] formats);
00046
00052 String[] getFormats();
00053
00060 void setForeground(Color color);
00061
00067 Color getForeground();
00068
00075 void setFont(Font font);
00076
00082 Font getFont();
00083
00090 void setVisible(boolean visible);
00091
00097 boolean isVisible();
00098
00099 }