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

[BarChart] is broken, when additional category is added

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 8
    • 7u6
    • javafx
    • 2.2.0b15

      Look at the attached movie.

      Code:


      import java.util.Random;
      import javafx.application.Application;
      import javafx.collections.FXCollections;
      import javafx.collections.ObservableList;
      import javafx.event.Event;
      import javafx.event.EventHandler;
      import javafx.scene.Scene;
      import javafx.scene.chart.*;
      import javafx.scene.control.*;
      import javafx.scene.layout.HBox;
      import javafx.scene.layout.Pane;
      import javafx.scene.layout.VBox;
      import javafx.stage.Stage;

      public class JavaCharts extends Application {

          public static void main(String[] args) {
              launch(args);
          }
          NumberAxis axisY = new NumberAxis(0, 100, 10);
          ObservableList<String> existingCategories = FXCollections.observableArrayList();
          CategoryAxis axisX = new CategoryAxis(existingCategories);
          BarChart testedBarChart = new BarChart(axisY, axisX);
          VBox vb = new VBox();

          @Override
          public void start(Stage stage) throws Exception {
              testedBarChart.setTitle("BarChart");
              testedBarChart.setStyle("-fx-border-color: darkgray;");
              existingCategories.addAll("category1", "category2", "category3");

              addDataToChart();

              Pane pane = new Pane();
              pane.setPrefSize(600, 600);

              pane.setPrefSize(600, 600);
              pane.getChildren().add(testedBarChart);

              vb.getChildren().addAll(pane, getAddCategoryDialog());

              Scene scene = new Scene(vb, 700, 700);
              stage.setScene(scene);
              stage.show();
          }

          public HBox getAddCategoryDialog() {
              HBox hb = new HBox();
              Label lb = new Label("Category");
              final TextField tf = TextFieldBuilder.create().text("").prefWidth(50).build();

              Label lind = new Label("to index");
              final TextField tfind = TextFieldBuilder.create().text("0").prefWidth(50).build();

              Button bt = ButtonBuilder.create().text("Add!").build();
              bt.setOnAction(new EventHandler() {

                  @Override
                  public void handle(Event t) {
                      int index = Integer.parseInt(tfind.getText());
                      existingCategories.add(index, tf.getText());
                      axisX.getCategories().add(index, tf.getText());
                  }
              });
              hb.getChildren().addAll(lb, tf, lind, tfind, bt);
              return hb;
          }

          private void addDataToChart() {
              double min = 0;
              double max = 100;
              int amount = existingCategories.size();

              ObservableList list = FXCollections.observableArrayList();

              XYChart.Series serie = new XYChart.Series("SeriesName", list);

              for (int i = 0; i < amount; i++) {
                  XYChart.Data newData = new XYChart.Data();
                  String category = existingCategories.get(i);
                  Double value = new Random().nextDouble() * (max - min) + min;
                  newData.setYValue(category);
                  newData.setXValue(value);
                  list.add(newData);
                  System.out.println(newData + " to category " + category + " value " + value);
              }

              testedBarChart.getData().add(serie);
          }
      }


      Type in a new category name and enter the index for addition, click the button.

            psomashe Parvathi Somashekar (Inactive)
            akirov Alexander Kirov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: