Hi,
I am using TChart Java fro Android.
I cant figure out how to fill in the values in the ISOSurface series.
For .Net there is a method available addxyz() but i couldn't find a method like this in TChart for android.
Basically I want date one axis, time on other and the respective values on the z-axis.
Thanks,
How to fill in ISOSurface seriese for android
Re: How to fill in ISOSurface seriese for android
Hi,
Both the .NET and the Java versions have add() overrides accepting 3 parameters: x, y and z. It seems to work fine for me here:
Both the .NET and the Java versions have add() overrides accepting 3 parameters: x, y and z. It seems to work fine for me here:
Code: Select all
IsoSurface iso1 = new IsoSurface(tChart1.getChart());
for (int x = 0; x < 10; x++)
{
for (int z = 0; z < 10; z++)
{
iso1.add(x, x+z, z);
}
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: How to fill in ISOSurface seriese for android
Thanks, It worked for me.
I was creating Series object and populating the series. This is even more easy.
Thanks again.
I was creating Series object and populating the series. This is even more easy.
Thanks again.