Page 1 of 1

how to show few series in legend with out removing/deselecti

Posted: Mon Sep 17, 2007 3:26 pm
by 9524108
i have a,b,c d as 4 series and need to show only a ,c legend titles in legend .
should not remove/deselect othere series b,d from the chart ...


need help asap

Posted: Mon Sep 17, 2007 4:06 pm
by narcis
Hi daryl,

You could try using ShowInLegend property like this:

Code: Select all

    TChart1.Series(0).ShowInLegend = True
    TChart1.Series(1).ShowInLegend = False
    TChart1.Series(2).ShowInLegend = True
    TChart1.Series(3).ShowInLegend = False