Hello,
Is there a ZIG function in your TeeChart Pro ActiveX product?
Thanks!
Best Regards,
Candy
ZIG function
Re: ZIG function
Hello Candy,
Could you confirm us if ZIG function it is the same if ZIG-ZAG function? And also, could you explain step to step what you want do exactly because ZIG function isn't in TeeChart Activex, but it can be possible to find a solution that behaves as Zig function.
Thanks,
Could you confirm us if ZIG function it is the same if ZIG-ZAG function? And also, could you explain step to step what you want do exactly because ZIG function isn't in TeeChart Activex, but it can be possible to find a solution that behaves as Zig function.
Thanks,
Best Regards,
Sandra Pazos / 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 |
Re: ZIG function
Hello,
Thank for your reply.
I want to get the value of the peak or crest of a wave . Is there any other function I can use?
The other question is: Is there a mouse click event in the TeeChart ActiveX Control , and How could I get which area is clicked?
Thanks!
Best Regards,
Candy
Thank for your reply.
I want to get the value of the peak or crest of a wave . Is there any other function I can use?
The other question is: Is there a mouse click event in the TeeChart ActiveX Control , and How could I get which area is clicked?
Thanks!
Best Regards,
Candy
Re: ZIG function
Hello Candy,
If you want to mark the maximum value with an horizontal line, you could use a ColorLine as follows:
You can also combine this events (or also the OnMouseDown/OnMouseUp event) with the Clicked method available on series, axis,... depending on what you are exactly trying to achieve.
You could check the Series' YValues.Maximum property. For example:Candy wrote:I want to get the value of the peak or crest of a wave . Is there any other function I can use?
Code: Select all
Caption = Str$(TChart1.Series(0).YValues.Maximum)
Code: Select all
Private Sub Form_Load()
TChart1.Aspect.View3D = False
TChart1.AddSeries scLine
TChart1.Series(0).FillSampleValues
TChart1.Tools.Add tcColorLine
TChart1.Tools.Items(0).asColorLine.Pen.Color = vbRed
TChart1.Tools.Items(0).asColorLine.Axis = TChart1.Axis.Left
TChart1.Tools.Items(0).asColorLine.Value = TChart1.Series(0).YValues.Maximum
End Sub
There are different events for some parts of the chart. There is an OnClickSeries event, an OnClickLegend event, an OnClickAxis event, an OnClickBackground event and a more general OnClick event.Candy wrote:Is there a mouse click event in the TeeChart ActiveX Control , and How could I get which area is clicked?
You can also combine this events (or also the OnMouseDown/OnMouseUp event) with the Clicked method available on series, axis,... depending on what you are exactly trying to achieve.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |