Page 1 of 1

TeeChart Bar

Posted: Tue May 04, 2010 1:15 pm
by 10045852
Hi,

at runtime the bars appear more thin as at designe time and the space between the bars is much to big. Don't know the properties to change it at designtime. Why the chart appears at design time different to run time?

Thanks for answering
jangbu

Re: TeeChart Bar

Posted: Tue May 04, 2010 2:54 pm
by yeray
Hi jangbu,

I can't see this effect with TeeChart v2010. I followed this steps:
- Create a new Delphi application.
- Drop Chart into the form.
- Double-click on the chart to open the editor at design time.
- Add a BarSeries.
- Go to Series/DataSource tab and select "Manual" in the combobox.
- Close the editor and run the application.

Could you add more steps to the list above so we can reproduce the issue here?

Re: TeeChart Bar

Posted: Tue May 04, 2010 3:30 pm
by 10045852
Sorry Yeray,

problem is fixed. The first 2 lines below have been the reason for the trouble while runtime.

Chart1.RemoveAllSeries; // now removed
Chart1.AddSeries(TBarSeries); // now removed
Chart1[0].Clear;
Chart1[0].Add(value,'Test',clRed);
.....

Thanks for effort
jangu

Re: TeeChart Bar

Posted: Tue May 04, 2010 3:48 pm
by yeray
Hi jangu,

I'm glad to see you've found the solution!