我正在尝试将我在Matlab中的GUI转换为JavaFX 8小程序。我希望有一个散点图,其中的图形在图像上,如下所示。
如上所示,CIE图的图片与散点图集成在一起。我尝试使用堆叠窗格,但由于图像在其上方,图形不可见。
编辑 -
尝试覆盖layoutplotchildren():
class SuperScatterChart extends ScatterChart{
public SuperScatterChart(Axis arg0, Axis arg1) {
super(arg0, arg1 );
// TODO Auto-generated constructor stub
}
@Override
protected void layoutPlotChildren(){
ImageView iv1 = new ImageView(new Image("file:///C:/Desktop/cie.png",450,450,true,true));
// How do I add iv1 to plot children?
super.layoutPlotChildren();
}
}