Пример #1
0
 public final void setAxesLabels(String[] labels) {
   axesLabels = labels;
   if (panel != null) {
     panel.hintChanged(HINT_AXES_LABELS);
   }
 }
Пример #2
0
 public void setRemoveHiddenLines(boolean _value) {
   this.removeHiddenLines = _value;
   if (panel != null) {
     panel.hintChanged(HINT_REMOVE_HIDDEN_LINES);
   }
 }
Пример #3
0
 public void setDecorationType(int _value) {
   this.decorationType = _value;
   if (panel != null) {
     panel.hintChanged(HINT_DECORATION_TYPE);
   }
 }
Пример #4
0
 public void setCursorType(int _type) {
   this.cursorType = _type;
   if (panel != null) {
     panel.hintChanged(HINT_CURSOR_TYPE);
   }
 }
Пример #5
0
 public void setShowCoordinates(int location) {
   showCoordinates = location;
   if (panel != null) {
     panel.hintChanged(HINT_SHOW_COORDINATES);
   }
 }
Пример #6
0
 public void setUseColorDepth(boolean _value) {
   this.useColorDepth = _value;
   if (panel != null) {
     panel.hintChanged(HINT_USE_COLOR_DEPTH);
   }
 }
Пример #7
0
 public void setAllowQuickRedraw(boolean _value) {
   this.allowQuickRedraw = _value;
   if (panel != null) {
     panel.hintChanged(HINT_ALLOW_QUICK_REDRAW);
   }
 }