Page 1 of 1
wheather or not useAxisArrow by Active5 in htm
Posted: Wed Jun 15, 2005 1:09 pm
by 6919081
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
Posted: Wed Jun 15, 2005 1:56 pm
by narcis
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++.
Posted: Tue Jun 21, 2005 9:43 am
by 6919081
Thank you sir, I have soleved this problem,you are best.