예제 #1
0
 public void setGridLine(GridLine gl) {
   if (gl == null) {
     gridLines.removeAll();
   } else {
     gridLines.add(gl);
   }
 }
예제 #2
0
  /** @throws IllegalArgumentException if DataSetKind is not Multi */
  public void addFillArea(FillArea fa) {

    if (!fa.getDataSetKind().equals(FillArea.DataSetKind.Multi))
      throw new IllegalArgumentException("only FillArea.DataSetKind.Multi allowed");

    fillAreas.add(fa);
  }
예제 #3
0
 public FillArea removeFillArea(int index) {
   return fillAreas.remove(index);
 }
예제 #4
0
 public void removeAllFillAreas() {
   fillAreas.removeAll();
 }
예제 #5
0
 public List<FillArea> getFillAreas() {
   return fillAreas.getList();
 }
예제 #6
0
 public boolean removeShapeMarker(ShapeMarker sm) {
   return shapeMarker.remove(sm);
 }
예제 #7
0
 public ShapeMarker removeShapeMarker(int index) {
   return shapeMarker.remove(index);
 }
예제 #8
0
 public void removeGridLine() {
   gridLines.removeAll();
 }
예제 #9
0
 public List<ShapeMarker> getShapeMarkers() {
   return shapeMarker.getList();
 }
예제 #10
0
 public boolean removeRangeMarker(RangeMarker rm) {
   return rangeMarker.remove(rm);
 }
예제 #11
0
 public RangeMarker removeRangeMarker(int index) {
   return rangeMarker.remove(index);
 }
예제 #12
0
 public void removeAllRangeMarkers() {
   rangeMarker.removeAll();
 }
예제 #13
0
 public List<RangeMarker> getRangeMarkers() {
   return rangeMarker.getList();
 }
예제 #14
0
 public void addRangeMarker(RangeMarker rm) {
   rangeMarker.add(rm);
 }
예제 #15
0
 public boolean removeFillArea(FillArea fa) {
   return fillAreas.remove(fa);
 }
예제 #16
0
 public void removeChartTitle() {
   title.removeAll();
 }
예제 #17
0
 public void removeAllShapeMarkers() {
   shapeMarker.removeAll();
 }