Is there a way to 'hide' a chart point's datalabel without loosing the DataLabel.Text property? I'm trying to use a mouseover event to selectively show labels, and it's too CPU intensive to recalc the text as the mouse moves around. I figure it would be much quicker for Excel to simply hide or otherwise not render the labels unless the mosue is over that datapoint.

I tried Points(i).HasDataLabel = False, but when I set that to True later on, the DataLabel.Text property has been reset.

Thanks in advance!