Replies: 1 comment 5 replies
-
I don't know |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi ,
I been trying to plot a contour with this tool. I have a dataset which plots correctly in plotly.js.
Tried to put this data as XYZ. Used the sample code available online. But the sample is generating XYZ based on some caluclations.
Following is the code I got online.
```
List values = new ArrayList();
NumberAxis xAxis = new NumberAxis("X");
xAxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());
xAxis.setLowerMargin(0.0);
xAxis.setUpperMargin(0.0);
NumberAxis yAxis = new NumberAxis("Y");
yAxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());
yAxis.setLowerMargin(0.0);
yAxis.setUpperMargin(0.0);
Beta Was this translation helpful? Give feedback.
All reactions