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
wheather or not useAxisArrow by Active5 in htm
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Richard,
You can use AxisArrow Tool in a .html page using the code above.
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++.
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
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 |