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
TeeChart Bar
Re: TeeChart Bar
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?
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TeeChart Bar
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
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
Hi jangu,
I'm glad to see you've found the solution!
I'm glad to see you've found the solution!
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |