TeeChart Bar

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
jangbu
Newbie
Newbie
Posts: 13
Joined: Tue Jul 03, 2007 12:00 am
Contact:

TeeChart Bar

Post by jangbu » Tue May 04, 2010 1:15 pm

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

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TeeChart Bar

Post by Yeray » Tue May 04, 2010 2:54 pm

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?
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

jangbu
Newbie
Newbie
Posts: 13
Joined: Tue Jul 03, 2007 12:00 am
Contact:

Re: TeeChart Bar

Post by jangbu » Tue May 04, 2010 3:30 pm

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

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TeeChart Bar

Post by Yeray » Tue May 04, 2010 3:48 pm

Hi jangu,

I'm glad to see you've found the solution!
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply