How to redraw Legend ?
Posted: Mon Apr 24, 2006 5:58 am
I am changing value: chart.Series(0).ValueLists.Items(1).Value(pos) = value and I want to redraw Legend. Ho it to make ?
Best regards, Rustam.
Best regards, Rustam.
Steema Software - Customer Support Forums
https://594668.gxwh.asia/support/
Code: Select all
Private Sub Command1_Click()
TChart1.Series(0).YValues.Value(5) = TChart1.Series(0).YValues.Value(5) * 2
End Sub
Hi Narchs,narcis wrote:Hi Rustam,
The legend is automatically updated using this code:
Code: Select all
Private Sub Command1_Click() TChart1.Series(0).YValues.Value(5) = TChart1.Series(0).YValues.Value(5) * 2 End Sub