我正在使用org.jzy3d
包(v 0.9)来创建Surface plots
。
这是我的代码:
int stepsX = 6;
Range rX = new Range(1,6);
int stepsY = 7;
Range rY = new Range(0,6);
Mapper mapper = new Mapper(){
@Override
public double f(double x, double y) {
return //My function to get z;
}
};
org.jzy3d.plot3d.primitives.Shape surface = Builder.buildOrthonormal(new OrthonormalGrid(rX, stepsX, rY, stepsY), mapper);
surface.setColorMapper(new ColorMapper(new ColorMapRainbow(), surface.getBounds().getZmin(), surface.getBounds().getZmax(), new org.jzy3d.colors.Color(1, 1, 1, .5f)));
surface.setFaceDisplayed(true);
surface.setWireframeDisplayed(false);
org.jzy3d.chart.Chart chart = new org.jzy3d.chart.Chart(Quality.Advanced,"swing");
chart.getScene().getGraph().add(surface);
IAxeLayout l = chart.getAxeLayout();
l.setXAxeLabel("Observation");
l.setYAxeLabel("Week");
l.setZAxeLabel("Rate");
l.setMainColor(org.jzy3d.colors.Color.GRAY);
JPanel p = new JPanel(new BorderLayout()); //another panel will be added to this panel and aligned left (BorderLayout.WEST)
p.add((JPanel)chart.getCanvas(),BorderLayout.CENTER);
......这就是我得到的:
我想进一步自定义此图表,但我真的无法弄清楚如何。
特别是我想:
缩小图表以适合我的面板(在附图中,您可以看到图表的底部不可见);
格式化轴标签(例如,对于z轴显示0.6而不是0.600000,对于x轴显示2而不是2.000,依此类推......)
反转颜色映射(例如,z值较低时为红色,z值较高时为蓝色/绿色)。
答案 0 :(得分:2)
我自己解决了上述3点中的2点。以下是有人感兴趣的解决方案:
格式化轴标签:我创建了一个自定义ITickRenderer
,它根据我之前定义的DecimalFormat
格式化轴标签。
ITickRenderer r = new ITickRenderer(){
@Override
public String format(float arg0) {
return m.df.format(arg0);
}
};
反转颜色映射:我发布了解决方案here。