Custom labels and axis labels
Posted: Thu Jun 30, 2005 8:49 am
I have a vertical axis with labels.
Now, I need to add a custom label, showing the last value of the series.
If I add the new custom label with this code
lastValue := mySeries.YValues[k];
with mySeries.GetVertAxis.Items.Add(lastValue) do
begin
Transparent := False;
Transparency := 50;
Color := clBlue;
end;
all previous labels become invisible.
How can I add a custom label without hiding all other labels?
Thanks
FM
Now, I need to add a custom label, showing the last value of the series.
If I add the new custom label with this code
lastValue := mySeries.YValues[k];
with mySeries.GetVertAxis.Items.Add(lastValue) do
begin
Transparent := False;
Transparency := 50;
Color := clBlue;
end;
all previous labels become invisible.
How can I add a custom label without hiding all other labels?
Thanks
FM