Page 1 of 1

Border around chart and clipping

Posted: Thu Mar 16, 2006 7:04 am
by 9088874
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

Posted: Thu Mar 16, 2006 4:12 pm
by narcis
Hi Reg Bust,

Thanks for the files:
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 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.
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 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.
4. Get rid of the outermost blue border especially the rounded corners.
This is possible by doing:

Code: Select all

      tChart1.Panel.BorderRound = 0;
      tChart1.Panel.BorderPen.Visible = false;
Or at design-time at Panel tab\ Borders tab\ Visible = false and Ending = flat.

Serious requirement

Posted: Wed Mar 21, 2007 12:28 pm
by 9638762
1. Remove the space at the left, right and bottom of the chart. (The space that is not part of the grid.)
also important for us ..

Thx