wheather or not useAxisArrow by Active5 in htm

TeeChart for ActiveX, COM and ASP
Post Reply
Richard
Newbie
Newbie
Posts: 40
Joined: Mon May 21, 2001 4:00 am

wheather or not useAxisArrow by Active5 in htm

Post by Richard » Wed Jun 15, 2005 1:09 pm

Dear zoe:

I don't know how to use the AxisArrow in the htm,but I know we can use the Axisarrow in VB6

Give me some suggestion

thanks a lot

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 Jun 15, 2005 1:56 pm

Hi Richard,

You can use AxisArrow Tool in a .html page using the code above.

Code: Select all

	TChart1.Tools.Add 2 'tcAxisArrow
	TChart1.Tools.Items(0).Active = True
	TChart1.Tools.Items(0).asAxisArrow.Axis = 3 'Bottom axis
	TChart1.Tools.Items(0).asAxisArrow.Brush.Color = vbBlue
	TChart1.Tools.Items(0).asAxisArrow.Length = 20
	TChart1.Tools.Items(0).asAxisArrow.Pen.Color = vbRed
	TChart1.Tools.Items(0).asAxisArrow.Pen.Width = 2
	TChart1.Tools.Items(0).asAxisArrow.Position = 2 'aaBoth
	TChart1.Tools.Items(0).asAxisArrow.ScrollPercent = 20
For other constants/enumerates please search for TeeChartDefines.h file among your TeeChart installation examples. It's default english installation path is C:\Program Files\Steema Software\TeeChart Pro v6 ActiveX Control\Examples\Visual C++.
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

Richard
Newbie
Newbie
Posts: 40
Joined: Mon May 21, 2001 4:00 am

Post by Richard » Tue Jun 21, 2005 9:43 am

Thank you sir, I have soleved this problem,you are best.

Post Reply