如何在javafx栏上显示条形值

时间:2013-03-06 01:09:15

标签: java javafx-2 bar-chart

从这段代码我可以生成10个条形的条形图现在我想知道如何在条形图上显示每个条形图的值,如附加图像:enter image description here

这是代码:

public class BarChartSample extends Application {


    @Override public void start(Stage stage) {
        stage.setTitle("Bar Chart Sample");
        final CategoryAxis xAxis = new CategoryAxis();
        final NumberAxis yAxis = new NumberAxis();
        final BarChart<String,Number> bc = 
            new BarChart<String,Number>(xAxis,yAxis);
        bc.setTitle("Country Summary");
        xAxis.setLabel("bars");       
        yAxis.setLabel("Value");

        XYChart.Series series1 = new XYChart.Series();
        series1.setName("...");       

for(int i=0;i<10;i++)
{
   //here i want to change color of bar if value of i is >5 than red if i>8 than blue 
series1.getData().add(new XYChart.Data("Value", i));

}          

}

public static void main(String[] args) {
        launch(args);
    }
}

2 个答案:

答案 0 :(得分:17)

在每个数据项的ChangeListener属性的node内,您可以调用以下函数将标签添加到栏的顶部:

private void displayLabelForData(XYChart.Data<String, Number> data) {
  final Node node = data.getNode();
  final Text dataText = new Text(data.getYValue() + "");
  node.parentProperty().addListener(new ChangeListener<Parent>() {
    @Override public void changed(ObservableValue<? extends Parent> ov, Parent oldParent, Parent parent) {
      Group parentGroup = (Group) parent;
      parentGroup.getChildren().add(dataText);
    }
  });

  node.boundsInParentProperty().addListener(new ChangeListener<Bounds>() {
    @Override public void changed(ObservableValue<? extends Bounds> ov, Bounds oldBounds, Bounds bounds) {
      dataText.setLayoutX(
        Math.round(
          bounds.getMinX() + bounds.getWidth() / 2 - dataText.prefWidth(-1) / 2
        )
      );
      dataText.setLayoutY(
        Math.round(
          bounds.getMinY() - dataText.prefHeight(-1) * 0.5
        )
      );
    }
  });
}

代码的工作原理是向每个条形节点的父节点添加一个文本标签,然后在每次调整条形大小时根据条形和文本的边界动态定位文本标签。

我为此创建了sample solution

labeledchartwithlegend

答案 1 :(得分:0)

JFX中没有这样的选项,关于在条形图中显示条形图的标签。

您可以做的是扩展条形图类,并覆盖有关内容创建和分配的方法。

您可以在javafx-ui-charts项目中观察图表代码,您可以从OpenJFX存储库下载。

图表代码不难理解......

http://hg.openjdk.java.net/openjfx/8/master/rt

下载rt-repository

找到项目javafx-ui-charts并打开它。查找条形图的实现。