简体   繁体   中英

How to label 3D plot axis using jzy3d library?

I was wondering if anybody knows how to assign labels for the (x,y,z) axis using jzy3d 3D plotting library.

I have tried to use such assignment:

chart.getView().setAxeLabels("","",""); 

From here: https://groups.google.com/forum/#!topic/jzy3d/6nkwF8C01Do

But it does not work.

Any ideas how to do that as by default they show up unassigned.

You can learn a lot by looking at the documentation, but I agree that their tutorials are lacking a lot of basic information.

chart.getAxeLayout().setXAxeLabel("");
chart.getAxeLayout().setYAxeLabel("");
chart.getAxeLayout().setZAxeLabel("");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM