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

Line artifact when resizing PieChart

    XMLWordPrintable

Details

    Description

      When resizing a PieChart, additionnal lines are generated and remain visibile in the node display (see attached screenshot).

      Test code:

      import javafx.application.Application;
      import javafx.scene.Scene;
      import javafx.scene.chart.PieChart;
      import javafx.scene.chart.PieChart.Data;
      import javafx.scene.layout.BorderPane;
      import javafx.stage.Stage;

      /**
       *
       * @author fabriceb
       */
      public class Main extends Application {

          /**
           * @param args the command line arguments
           */
          public static void main(String[] args) {
              Application.launch(Main.class, args);
          }
          
          @Override
          public void start(Stage primaryStage) {
              PieChart pieChart = new PieChart();
              pieChart.getData().addAll(new Data("LINUX", 15), new Data("WINNT51", 40), new Data("WINNT50", 5), new Data("WINNT61", 40));
              primaryStage.setTitle("Pie Trouble");
              BorderPane root = new BorderPane();
              root.setCenter(pieChart);
              Scene scene = new Scene(root, 300, 250);
              primaryStage.setScene(scene);
              primaryStage.setVisible(true);
          }
      }

      Note: the PieChart displays fine initially, you have to resize the window to have the additionnal line appear.

      Attachments

        1. DisplayDrivers.jpg
          DisplayDrivers.jpg
          164 kB
        2. PieTrouble.jpg
          PieTrouble.jpg
          68 kB
        3. Traces.txt
          6 kB
        4. traces2.txt
          12 kB

        Issue Links

          Activity

            People

              flar Jim Graham
              fbouyajfx Fabrice Bouyé (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:
                Imported: