Hello,
How can i change the distance between a DataTableTool and the Chart if i have AutoPosition (of DataTableTool) set true? Problem there is, that my Y Axislables too long and the distance seems to be constant.
For better understanding what i mean:
Distance between DataTableTool & Chart
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi AIS,
I'm afraid this is not possible at the moment. The only solution I can think of is manually setting tool's position. I've added your request to the wish-list to be considered for inclusion in future releases.
I'm afraid this is not possible at the moment. The only solution I can think of is manually setting tool's position. I've added your request to the wish-list to be considered for inclusion in future releases.
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 AIS,
There's not specific property for that but you could aproximatelly calculate its width using left axis position after the chart has been plotted:
There's not specific property for that but you could aproximatelly calculate its width using left axis position after the chart has been plotted:
Code: Select all
tChart1.Axes.Left.PositionUnits = Steema.TeeChart.PositionUnits.Pixels;
int width = tChart1.Axes.Left.Position;
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 |