It relates to putting X-Axis labels on all columns of a bar chart when MultiBar= 4 i.e. mbSideAll in cases where you have more then one series. Some code was proposed, seebelow, but I cannot get it to work.
Code: Select all
tmpPos:=0;
DBChart.Axes.Bottom.Items.Clear;
for i:=0 to DBChart.SeriesCount-1 do
begin
for j:=0 to DBChart[i].Count-1 do
begin
DBChart.Axes.Bottom.Items.Add(tmpPos,DBChart[i].Labels.Labels[j]);
Inc(tmpPos);
end;
end;
Regards,
Graham