Displaying Only The Legend

E

eXperto

Is there a way to hide the plotting area of the chart and display only
the legend? i want to take the legend alone and export it to a gif to
be able to place it in whatever place i want.
 
T

Thao Moua [ms]

You can just set all the other chart object's color to
match that of the Chartspace background color. Or you
can use custom drawing and draw a white rectangle ontop
of all the chart objects you don't want to display.

Thao Moua
OWC Webchart Support
 
T

Thao Moua [ms]

You can use the BeforeRender() event to disable drawing
all the chart elements except for legend.
----------------------
sub CS_BeforeRender(drawObject, chartObject , Cancel)
if typename(chartObject)<>"ChLegend" then
Cancel.Vaue = TRUE
end if
end sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top