No, you can't do this. However you can use custom
drawing to draw your own markers and use the following
code to disable drawing the line for the zero-value
marker.
--------------------------
set c=webchart.constants
for x=0 to webchart.charts(0).seriescollection
(0).points.count-1
set oPoint=webchart.charts(0).seriescollection(0).points
(x)
if oPoint.Getvalue(2)=0 then
webchart.charts(0).seriescollection(0).points
(x).line.color=c.chcolornone
webchart.charts(0).seriescollection(0).points
(x+1).line.color=c.chcolornone
end if
next
---------------------------
Thao Moua
OWC Webchart Support
This posting is provided "AS IS" with no warranties, and
confers no rights. Use of included script samples are
subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm