Barseries, overlapping bars
Barseries, overlapping bars
Hi.
When I resize the graph the barseries does overlap. Before2&3.png
What I would like to do is have x number of points(x-axis) with y numbers of barseries to each x-value.
In this case to points (x) 20111, 42111 and 15 barseries (y) to each.
How can I prevent the bars form overlapping?
And I also want an spacing between the points on the x-axis.
Something similar like in the After.png. But not such an big spacing.
After.png spacing is created by adding x-axis point 20112
I have uploaded an zip attachment containing Before/after
Thanks
JohnA
When I resize the graph the barseries does overlap. Before2&3.png
What I would like to do is have x number of points(x-axis) with y numbers of barseries to each x-value.
In this case to points (x) 20111, 42111 and 15 barseries (y) to each.
How can I prevent the bars form overlapping?
And I also want an spacing between the points on the x-axis.
Something similar like in the After.png. But not such an big spacing.
After.png spacing is created by adding x-axis point 20112
I have uploaded an zip attachment containing Before/after
Thanks
JohnA
- Attachments
-
- Barseries.zip
- (131.57 KiB) Downloaded 398 times
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Barseries, overlapping bars
Hi JohnA,
Are you using MultiBar property? I recommend you to have a look at the examples at All Features\Welcome!\Chart Styles\Standard\Bar\Side All Layout in the new features demo, available at TeeChart's program group. If this doesn't help please attach a simple example project we can run "as-is" to reproduce the problem here.
Thanks in advance.
Are you using MultiBar property? I recommend you to have a look at the examples at All Features\Welcome!\Chart Styles\Standard\Bar\Side All Layout in the new features demo, available at TeeChart's program group. If this doesn't help please attach a simple example project we can run "as-is" to reproduce the problem here.
Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Barseries, overlapping bars
Hi.
I can not find the features demo.
It is not located under the TeeChart's program group.
thanks
I can not find the features demo.
It is not located under the TeeChart's program group.
thanks
- Attachments
-
- Uten navn.png (7.43 KiB) Viewed 9261 times
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Barseries, overlapping bars
Hi JohnA,
That's the source code version. Demos, tutorials and documentation ares only included with the binary installers to keep the source code version as small as possible. Moreover, source code customers also have access to the binary installers. We recommend to install them prior to the source code version to have access to those resources.
That's the source code version. Demos, tutorials and documentation ares only included with the binary installers to keep the source code version as small as possible. Moreover, source code customers also have access to the binary installers. We recommend to install them prior to the source code version to have access to those resources.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Barseries, overlapping bars
Hi.
I uninstalled with source code
Installed binary
installed with source code and recompiled.
When I'm starting the new features demo I get this error.
I uninstalled with source code
Installed binary
installed with source code and recompiled.
When I'm starting the new features demo I get this error.
- Attachments
-
- Skjermbilde.PNG (16.8 KiB) Viewed 9261 times
Re: Barseries, overlapping bars
In case you do not understand norwegian
roughly translated to "Procedure Entry Point did not exist in the dynamic link library"
roughly translated to "Procedure Entry Point did not exist in the dynamic link library"
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Barseries, overlapping bars
Hi JohnA,
That's probably because the .bpl it was compiled with no longer exists as it was overwritten by the source code generated package. In that case you should open the demo project (Tee9New.dpr) at C:\Program Files\Steema Software\TeeChart 2013 for RAD XE4\Examples\Features, for example, and compile it with your current TeeChart version.
That's probably because the .bpl it was compiled with no longer exists as it was overwritten by the source code generated package. In that case you should open the demo project (Tee9New.dpr) at C:\Program Files\Steema Software\TeeChart 2013 for RAD XE4\Examples\Features, for example, and compile it with your current TeeChart version.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Barseries, overlapping bars
Hi.
I was not able to solve this with the multibar property.
I have attached an sample project demonstrating the problem.
You can se that the bars overlapping.
What I'm looking for is 2 groups of bars: 20111 and 42111 (x-values)
and a space between them
thanks
I was not able to solve this with the multibar property.
I have attached an sample project demonstrating the problem.
You can se that the bars overlapping.
What I'm looking for is 2 groups of bars: 20111 and 42111 (x-values)
and a space between them
thanks
- Attachments
-
- BarSeries.zip
- (82.79 KiB) Downloaded 389 times
Re: Barseries, overlapping bars
Hi JohnA,
What about setting a smaller bar width percent?
What about setting a smaller bar width percent?
Code: Select all
for i:=0 to Chart1.SeriesCount-1 do
(Chart1[i] as TBarSeries).BarWidthPercent:=75;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Barseries, overlapping bars
Thanks.
The chart look better now
The chart look better now