Grid with fixed Increment

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
ALindenthal
Newbie
Newbie
Posts: 8
Joined: Wed Jun 22, 2005 4:00 am
Contact:

Grid with fixed Increment

Post by ALindenthal » Wed Aug 23, 2006 1:23 pm

Hi

I've set the Axes.Bottom.Increment = 10.
If the window gets to small, not every grid line is visible. It looks then like Increment would be 20...

But i need to see the grid with increment 10, even if the grid gets very small.

Is there a way to that ??

sincerely yours
Daniel

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Aug 23, 2006 1:39 pm

Hi Daniel,

You should be able to force this by setting labels separation to zero:

Code: Select all

    private void Form1_Load(object sender, EventArgs e)
    {
      line1.FillSampleValues(200);

      tChart1.Axes.Bottom.Increment = 10;
      tChart1.Axes.Bottom.Labels.Separation = 0;
    }
However, this doesn't work. This is a known issue (TF02011118) already listed on our defect list to be fixed for 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
Image Image Image Image Image Image
Instructions - How to post in this forum

ALindenthal
Newbie
Newbie
Posts: 8
Joined: Wed Jun 22, 2005 4:00 am
Contact:

Grid with fixed Increment

Post by ALindenthal » Mon Sep 25, 2006 6:55 am

Hi support

We installed Version=2.0.2456.16162

Is that Problem not fixed.... ??

sincerely yours
Daniel

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Sep 25, 2006 8:11 am

Hi Daniel,

No, this issue hasn't been fixed yet. I've increased its priority so that it is considered sooner.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply