00001
00002
00003
00004
00005
00006
00007 package org.swtchart;
00008
00009 import org.eclipse.swt.graphics.Color;
00010 import org.eclipse.swt.graphics.Rectangle;
00011
00015 public interface IBarSeries extends ISeries {
00016
00020 public enum BarWidthStyle {
00021
00023 STRETCHED,
00024
00026 FIXED;
00027 }
00028
00036 BarWidthStyle getBarWidthStyle(BarWidthStyle style);
00037
00045 void setBarWidthStyle(BarWidthStyle style);
00046
00052 int getBarWidth();
00053
00061 void setBarWidth(int width);
00062
00068 int getBarPadding();
00069
00077 void setBarPadding(int padding);
00078
00084 Color getBarColor();
00085
00092 void setBarColor(Color color);
00093
00104 Rectangle[] getBounds();
00105 }