Can anyone let me know how I can modify the X-Axis Point Value Pro-grammatically.
Thanks Akshay
If you want change the X values in runtime you can do something as next:
For i = 0 To TChart1.Series.Count
For j = 0 To TChart1.Series(i).Count
TChart1.Series(i).XValues(j) = j + 3
Next j
Next i
Could you tell us if previous help you?
I hope will helps.
Thanks,