Hello
I have a TChart with two Bar-Series. I add the Series Values with bar1.Add(XValue, YValue);
If I have the same xVaue on bar1 and on bar2, it shows the two bars next to each other.
How can I paint the bar2 in front of the bar1 ?? (bar1 has Width = 20 and bar2 has Width = 10, so still both bars ar visible)
I guess it's quite easy, but unfortunally I don't find it out...
Thanks for your help!!
Eric
Show Bars behind each other
Re: Show Bars behind each other
Hello Eric,
I think you need change stack Style of Bar as do in next line of code:
Could you tell us if previous code works fine for you?
I hope will helps.
Thanks,
I think you need change stack Style of Bar as do in next line of code:
Code: Select all
bar1.MultiBar = Steema.TeeChart.Styles.MultiBars.None;
I hope will helps.
Thanks,
Re: Show Bars behind each other
Great !! It works.
Thanks a lot!!!
It's easy if you know the right properties...
Thanks a lot!!!
It's easy if you know the right properties...