ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  3D scatter zones
Posted by icm63 on Mar-15-2013 10:17
Attachments:
This is the chart I am working on: http://www.chartdir.com/forum/download_thread.php?site=chartdir&bn=chartdir_support&thread=1363289137&new_thread=1

QUESTION?

Can you do addZone in a 3D scatter chart??

I tried

c.xAxis().addZone(13,14,&HFF0000)

but nothing happened.

SO I assume you cant do ZONES on a 3D scatter chart, please confirm, or an example ??
CAP_305.png

  Re: 3D scatter zones
Posted by Peter Kwan on Mar-15-2013 23:42
Hi icm63,

Unluckily, axis zones are not supported in 3D scatter or 3D surface charts.

Regards
Peter Kwan

  Re: 3D scatter zones
Posted by icm63 on Mar-16-2013 02:33
Darn...

Must have for future versions.

  Re: 3D scatter zones
Posted by icm63 on Mar-16-2013 02:34
Can I draw a LINE or MARK on X,Y,Z axis.

Any options at all???

  Re: 3D scatter zones
Posted by Peter Kwan on Mar-18-2013 23:56
Hi icm63,

Yes. You can use mark lines.

By default, mark lines will be drawn over the data contents. If Mark.setDrawOnTop is set to false, mark lines will be drawn on the back. This is true in both 2D or 3D.

For surface charts, mark lines will be drawn on the data surface by default, and on the plot region walls if setDrawOnTop is set to false. For 3D scatter chart, because there is no data surface to draw a line, so by default the mark line will not draw anything. However, if  setDrawOnTop is set to false, mark lines will be drawn on the plot region walls, just like in XYChart or SurfaceChart.

Hope this can help.

Regards
Peter Kwan

  Re: 3D scatter zones
Posted by icm63 on Mar-19-2013 04:14
Thanks