Code: Select all
tChart1.Legend.Inverted = true;
tChart1.Draw();
Code: Select all
tChart1.Draw();
tChart1.Legend.Inverted = true;
Code: Select all
tChart1.Legend.Inverted = true;
tChart1.Draw();
Code: Select all
tChart1.Draw();
tChart1.Legend.Inverted = true;
Code: Select all
Private Shared Function CorrectErrorValue(ByVal y As Double, ByVal err As Double) As Double
If y > 0 Then
Return err
Else
Return System.Math.Abs(err) * -1 + y
End If
End Function