Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8120875

Slider: ticks and labels is missed for range (-N, 0)

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • fx2.0.2
    • fx2.0
    • javafx
    • Win7/JDK6/


      import javafx.application.Application;
      import javafx.geometry.Orientation;
      import javafx.scene.Scene;
      import javafx.scene.control.Slider;
      import javafx.scene.layout.VBox;
      import javafx.stage.Stage;

      public class Main extends Application {

          VBox root;

          @Override
          public void start(Stage stage) {
              stage.setTitle(this.getClass().getSimpleName());
              stage.setScene(new ToolBarAppScene());
              stage.show();
          }

          public static void main(String[] args) {
              launch(Main.class, args);
          }

          public class ToolBarAppScene extends Scene {
              public ToolBarAppScene() {
                  super(root = new VBox(10));

                  final Slider slider = new Slider(-100, 0, 0);
                  slider.setOrientation(Orientation.VERTICAL);
                  slider.setShowTickLabels(true);
                  slider.setShowTickMarks(true);
                 
                  root.getChildren().add(slider);
              }
          }
      }

            psomashe Parvathi Somashekar (Inactive)
            ogb Oleg Barbashov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: