Hello,
I am using TeeChart Pro.Net3 and I try to find out how I can rotate the axis in 2D. It is possible to roate the chart around the y-axis (left axis). But I do not find any possibility to rotate the whole coordinate plane. So it should be possible that after rotation the x-axis is on the left side and the y-axis is on the top of the chart.
Is there any solution for that problem?
Thanks in advance
Marco
Rotate the axis in 2D
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Marco,
I'm afraid this is not possible for now. However, if you give us some more details about what you are trying to achieve, we may be able to suggest some alternatives.
Thanks in advance.
I'm afraid this is not possible for now. However, if you give us some more details about what you are trying to achieve, we may be able to suggest some alternatives.
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 |
Hello Narcis,
thank you for your answer!
We have to draw a dynamic view of values in realtime (so that you can see the actually value). Sometimes the values arrive from the left side (y-axis) or from the top. But our users want to have the entry always from the bottom equals the orginal values. So we have to rotate the whole coordinate plane in any angle they want.
I fear I have to draw it directly in the windows form without using the TChart...
If you have any hints, it would be great.
Thanks in advance
Regards
Marco
thank you for your answer!
We have to draw a dynamic view of values in realtime (so that you can see the actually value). Sometimes the values arrive from the left side (y-axis) or from the top. But our users want to have the entry always from the bottom equals the orginal values. So we have to rotate the whole coordinate plane in any angle they want.
I fear I have to draw it directly in the windows form without using the TChart...
If you have any hints, it would be great.
Thanks in advance
Regards
Marco
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Marco,
I'm still not 100% sure on what are you trying to achieve exactly. However, if you want to see data populated from the left you could set series order to descending instead of ascending (default value):
Please notice that Order is available for all series ValueLists. You should set Order property before populating series.
If you want series going from bottom to top or vice versa you can use horizontal series like HorizLine or HorizBar and combine them with ValueLists ordering as commented above.
If this doesn't help don't hesitate to let us know.
I'm still not 100% sure on what are you trying to achieve exactly. However, if you want to see data populated from the left you could set series order to descending instead of ascending (default value):
Code: Select all
tChart1[0].XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Descending;
If you want series going from bottom to top or vice versa you can use horizontal series like HorizLine or HorizBar and combine them with ValueLists ordering as commented above.
If this doesn't help don't hesitate to let us know.
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Marco,
You're welcome! I'm glad to hear you found a solution to the issue.
You're welcome! I'm glad to hear you found a solution to the issue.
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 |