Persistent custom axes

TeeChart for ActiveX, COM and ASP
Post Reply
JuanLu
Newbie
Newbie
Posts: 5
Joined: Fri Nov 23, 2007 12:00 am

Persistent custom axes

Post by JuanLu » Wed Aug 05, 2009 7:51 pm

On demo sample, there is a form (AxisCustomForm) when zoomed, an axis persists. I don´t find how to do this. Could you tell me how?

Thanks

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Persistent custom axes

Post by Yeray » Thu Aug 06, 2009 1:49 pm

Hi JuanLu,

In the example you mention, there are 4 custom axes and they are hided with the following code:

Code: Select all

  Dim i
  With TChart1.Axis
    For i = 0 To .CustomCount - 1
      .Custom(i).Visible = Check1.Value
    Next i
  End With
But there are also the default Left and Bottom axes visible and the loop above won't hide them. If you also want to hide them you could do this:

Code: Select all

With TChart1.Axis
  .Left.Visible = False
  .Bottom.Visible = False
End With
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

JuanLu
Newbie
Newbie
Posts: 5
Joined: Fri Nov 23, 2007 12:00 am

Re: Persistent custom axes

Post by JuanLu » Thu Aug 06, 2009 2:19 pm

Hi Yeray, thanks for your reply.

I think I did a wrong question. What i want is to know how, when do zoom at any area in the chart, series 1 and 2 are changed by zoom, but series 3 mantains fixed. Is this caused by the visibility of the custom axis?

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Persistent custom axes

Post by Yeray » Fri Aug 07, 2009 9:04 am

Hi JuanLu,

The problem is that custom axis don't zoom automatically, you always can zoom them manually as in this example but this demo wasn't thought to show this functionality.

PS: Note that this is a delphi code but you shouldn't fins too much problems translating it.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply