Hi Ko,
Unluckily, ChartDirector does not support marking a particular point in a surface chart. The most it can do is to create special color grid lines along the x-direction and y-direction on the surface. With this method, you may show a point at the intersection of two xy surface grid lines. For example, in Java, it is like:
c.xAxis().addMark(-2, 0xff0000);
c.yAxis().addMark(-3, 0xff0000);
Regards
Peter Kwan |