0

IsoSurface のサンプル コードを見ています。サンプル コードに似たグラフを作成したいのですが、必要なデータ ポイントを再作成できません (fillSampleValues() を使用しているため)。例 (以下に示す) ではどのような値が使用されていますか? ありがとう!

編集:フラットにする方法とピークを作成する方法に特に興味があります。独自の x、y、z 値を入力しようとすると、グラフが表示されません。有効な値を入力していないためだと思います。そのため、fillSampleValues が何であり、どのようにグラフが作成されるのかを知りたいと思っています。

series = Series.createNewSeries(chart.getChart(), IsoSurface.class, null);
        series.fillSampleValues();
        chart.addSeries(series);
        chart.getLegend().setAlignment(LegendAlignment.BOTTOM);
        chart.getHeader().setText("ISOSurface Series");
        chart.getHeader().getFont().setSize(14);
        chart.getAspect().setOrthogonal(false);
        chart.getAspect().setZoom(70);              
        chart.getAspect().setRotation(320);
        chart.getAspect().setElevation(340);
        chart.getAspect().setPerspective(37);
        chart.getAspect().setChart3DPercent(90);
        ((IsoSurface) series).setPaletteStyle(PaletteStyle.RAINBOW);
4

1 に答える 1