Side All, Labels on Axis X
Side All, Labels on Axis X
I try to represent few series in MultipleBar = SideAll.
Unfortunatelly I see the problem I've presented on attached screenshot.
What can I do to show labels on axis X for every serie?
I didn't found any info about it here.
Thanks.
Unfortunatelly I see the problem I've presented on attached screenshot.
What can I do to show labels on axis X for every serie?
I didn't found any info about it here.
Thanks.
- Attachments
-
- Diagramm_SideAll.png (26.76 KiB) Viewed 8905 times
Delphi 2009, TeeChart Pro 8.07
Re: Side All, Labels on Axis X
I use Delphi 2009 and TeeChart Pro 8.06, I have tried it in 8.07 also...
Delphi 2009, TeeChart Pro 8.07
Re: Side All, Labels on Axis X
Hi SSchmahl,
We would need some extra information to reproduce the problem here:
- How many TBarSeries do you have?
- How are you adding all the series values and labels?
- Are you setting any particular bottom axis LabelStyle?
We would need some extra information to reproduce the problem here:
- How many TBarSeries do you have?
- How are you adding all the series values and labels?
- Are you setting any particular bottom axis LabelStyle?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Side All, Labels on Axis X
Hi Yeray,
There are three (3) series. I've created a Dataset for test purpose and all of these series use the DataSet.
DataSet has fields DateName, Value.
I've configured every Serie to use DateName for Labels, Value for Bar.
Styles for Bottom Axis :
Labels : Visible, Round First, Label on Axis, Angle=90, Style=Auto
All other Values - by default.
There are three (3) series. I've created a Dataset for test purpose and all of these series use the DataSet.
DataSet has fields DateName, Value.
I've configured every Serie to use DateName for Labels, Value for Bar.
Styles for Bottom Axis :
Labels : Visible, Round First, Label on Axis, Angle=90, Style=Auto
All other Values - by default.
Delphi 2009, TeeChart Pro 8.07
Re: Side All, Labels on Axis X
Hi SSchmahl,
Could you please send us a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
Could you please send us a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Side All, Labels on Axis X
Hi,
look in attachment.
You'll need JCL Memory DataSet to compile this project. You have to compile and start program, there is nothing to see in design-time.
The Diagram is cut from our real project.
I couldn't attach compiled program due to size restriction.
Thanks.
look in attachment.
You'll need JCL Memory DataSet to compile this project. You have to compile and start program, there is nothing to see in design-time.
The Diagram is cut from our real project.
I couldn't attach compiled program due to size restriction.
Thanks.
Delphi 2009, TeeChart Pro 8.07
Re: Side All, Labels on Axis X
I forgott to attach a file, sorry.
- Attachments
-
- Chart.zip
- (6.23 KiB) Downloaded 386 times
Delphi 2009, TeeChart Pro 8.07
Re: Side All, Labels on Axis X
Hi SSchmahl,
Please try to send us a simple example that doesn't need any additional component, only the components that come with the IDE.SSchmahl wrote:You'll need JCL Memory DataSet to compile this project
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Side All, Labels on Axis X
OK, here is example with TCLientDataSet.
- Attachments
-
- Chart.zip
- (7.58 KiB) Downloaded 410 times
Delphi 2009, TeeChart Pro 8.07
Re: Side All, Labels on Axis X
Hi SSchmahl,
Having several bar series, by default, the first series' labels are drawn in the bottom axis. But when you have MultiBar=mbSideAll, certainly it would be nice if all the series' labels could be drawn in the bottom axis without any intervention, so I've added it to the wish list to be implemented in future releases (TV52014973).
In the meanwhile you could use custom labels as follows:
Having several bar series, by default, the first series' labels are drawn in the bottom axis. But when you have MultiBar=mbSideAll, certainly it would be nice if all the series' labels could be drawn in the bottom axis without any intervention, so I've added it to the wish list to be implemented in future releases (TV52014973).
In the meanwhile you could use custom labels as follows:
Code: Select all
tmpPos:=0;
DBChart.Axes.Bottom.Items.Clear;
for i:=0 to DBChart.SeriesCount-1 do
begin
for j:=0 to DBChart[i].Count-1 do
begin
DBChart.Axes.Bottom.Items.Add(tmpPos,DBChart[i].Labels.Labels[j]);
Inc(tmpPos);
end;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Side All, Labels on Axis X
Hi,
thanks, it works...
Where could I see this wish list and what can I use this number (TV52014973) for?
Thanks a lot anyway.
thanks, it works...
Where could I see this wish list and what can I use this number (TV52014973) for?
Thanks a lot anyway.
Delphi 2009, TeeChart Pro 8.07
Re: Side All, Labels on Axis X
Hi SSchmahl,
So I recommend you to be aware at this forum or subscribe to our RSS news feed for new release announcements and what's implemented on them.
I'm happy to hear that!SSchmahl wrote:thanks, it works...
I'm afraid there isn't a public issue tracking system where you can see the status of the tickets. We use these numbers to identify the bugs, feature requests, and enhancements in our internal database and we use to tell them to the customers interested so that they will be able to find them in the release notes.SSchmahl wrote:Where could I see this wish list and what can I use this number (TV52014973) for?
So I recommend you to be aware at this forum or subscribe to our RSS news feed for new release announcements and what's implemented on them.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |