Hi
I have sent a chart (in .ten and .png format) via the newsgroup (the .NET v2 newsgroup).
Please tell me how to:
1. Remove the space at the left, right and bottom of the chart. (The space that is not part of the grid.)
2. Currently some of my labels (e.g. "Zaptronix" on the extreme left) extend into that space. I still want those to be visible. If necessary I can do this with code as I manually set the axis min and max.
3. Extend the minor tick marks on both axes so that they are on both sides of the axis (as the major tick marks are).
4. Get rid of the outermost blue border especially the rounded corners.
In all instances I really want to be able to do this via the TeeCharts Editor and not via code (if possible).
Thank you.
Kind regards
Reg Bust
Border around chart and clipping
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Reg Bust,
Thanks for the files:
Or at design-time at Panel tab\ Borders tab\ Visible = false and Ending = flat.
Thanks for the files:
This is not possible for now as even if you set the panel margins to zero the chart alocates some space for the axis even if, as in your case, the axes are into the ChartRect. However, we are investigating on some new features that would let the user overcome that.1. Remove the space at the left, right and bottom of the chart. (The space that is not part of the grid.)
2. Currently some of my labels (e.g. "Zaptronix" on the extreme left) extend into that space. I still want those to be visible. If necessary I can do this with code as I manually set the axis min and max.
This is not possible currently. I've added this request to our wish-list to be considered for future releases. However, setting axes minor ticks length (Axes tab\Minor tab\Length) to -2 causes a similar efect.3. Extend the minor tick marks on both axes so that they are on both sides of the axis (as the major tick marks are).
This is possible by doing:4. Get rid of the outermost blue border especially the rounded corners.
Code: Select all
tChart1.Panel.BorderRound = 0;
tChart1.Panel.BorderPen.Visible = false;
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 |
Serious requirement
also important for us ..1. Remove the space at the left, right and bottom of the chart. (The space that is not part of the grid.)
Thx