Series Items as Links/Buttons

TeeChart for ActiveX, COM and ASP
Post Reply
paligap
Newbie
Newbie
Posts: 19
Joined: Tue Feb 24, 2004 5:00 am
Location: Australia

Series Items as Links/Buttons

Post by paligap » Tue Feb 12, 2008 4:26 am

We would like to plot a series and have each point clickable on the chart. It would be best if the series item was a circle or square (anything that can be clicked easily).

Once the item is clicked, an event will be fired. We would also like the mouse pointer to change to a hand (as happens when you hover over a link) when the series item can be clicked.

Do you have any examples of this?

Also, how can I download the latest VBDemo for ActiveCharts?
I think its for v8?

Regards
Paligap

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Mon Feb 18, 2008 11:52 am

Hi Paligap,
We would like to plot a series and have each point clickable on the chart. It would be best if the series item was a circle or square (anything that can be clicked easily).
you could use similar code to the following one :

Code: Select all

Dim xx As Integer

Private Sub Form_Load()
With TChart1
    .Aspect.View3D = False
    .AddSeries scPoint
    .Series(0).FillSampleValues
    .Series(0).Cursor = -21
End With
xx = 1
End Sub


Private Sub TChart1_OnMouseLeaveSeries(ByVal SeriesIndex As Long)
  TChart1.Repaint
  xx = 1
End Sub

Private Sub TChart1_OnSeriesClickPointer(ByVal SeriesIndex As Long, ByVal ValueIndex As Long, ByVal x As Long, ByVal Y As Long)
If xx = 1 Then
  xx = 0
  If TChart1.Series(0).Clicked(x, Y) <> -1 Then
    TChart1.Series(0).asPoint.Pointer.DrawPointer TChart1.Canvas.HandleDC, False, _
    TChart1.Series(0).CalcXPos(ValueIndex), _
    TChart1.Series(0).CalcYPos(ValueIndex), _
    TChart1.Series(0).asPoint.Pointer.HorizontalSize + 5, _
    TChart1.Series(0).asPoint.Pointer.VerticalSize + 5, _
    TChart1.Series(0).Color, _
    TChart1.Series(0).asPoint.Pointer.Style
  End If
End If
End Sub
Also, how can I download the latest VBDemo for ActiveCharts?
I'm not sure what you refer with ActiveCharts, could you please be more specific ?

Post Reply