For example :
Code: Select all
Chart1[0].Clear;
Chart1[0].AddXY(0,20,'125');
Chart1[0].AddXY(1,30,'250');
// No Value for '500'
Chart1[0].AddXY(3,30,'1000');
Chart1[0].AddXY(4,50,'2000');
Chart1[1].Clear;
Chart1[1].AddXY(0,10,'125');
// No Value for '250'
Chart1[1].AddXY(2,100,'500');
Chart1[1].AddXY(3,200,'1000');
Chart1[1].AddXY(4,30,'2000');
How to 'force' the value '500' to appear on the BottomAxis ? Eg, I want to get this :
But :
1) I don't want to swap series, because each series might have a missing values.
2) I don't want to use AddNullXY, as I need continuous lines.
Can someone help ?