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

BarChart : half fill grey background in SWPipeline

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • P3
    • 8
    • 8
    • javafx

    Description

      Reproduce only with -Dprism.order=sw

      @Override public void start(Stage stage) {
              stage.setTitle("Bar Chart Sample");
              
              CategoryAxis cAxis = new CategoryAxis();
              NumberAxis nAxis = new NumberAxis(0, 5, 1);
              BarChart node = new BarChart(cAxis, nAxis);
              XYChart.Series series = new XYChart.Series();
              series.getData().add(new XYChart.Data("1", 2));
              XYChart.Series series1 = new XYChart.Series();
              series1.getData().add(new XYChart.Data("2", 3));
              XYChart.Series series2 = new XYChart.Series();
              series2.getData().add(new XYChart.Data("2", 5));
              node.getData().addAll(series, series1, series2);
              Scene scene = new Scene(node,500,500);
              
              stage.setScene(scene);
              stage.show();
          }

      Attachments

        Issue Links

          Activity

            People

              msoch Martin Ĺ och
              slugovoy Sergey Lugovoy (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:
                Imported: