Jump to content
Software FX Community

After refreshing series data tooltip shows incorrect value


vighnesha

Recommended Posts

I am using ChartFx 7 version on windows platform (win 7 64 bit).

When I refresh the chart series data and move the mouse pointer to any series point the tool tip shows the incorrect value.

I observed that the tool tip appears after refresh was the last tool tip showed before refresh the chart data.

I subscribed the GetTip event to show tool tip only when the mouse pointer points to series point. But still sometimes the tool tip appears in between two points (for line graph). The code sample -

void chart1_GetTip(object sender, ChartFX.WinForms.GetTipEventArgs e)

{

chart1.GetTip -= new ChartFX.WinForms.GetTipEventHandler(chart1_GetTip);

chart1.Points[e.Series, e.Point].Text = null;

if (e.Point >= 0 && e.HitType == HitType.Point)

{

string strXAxisLabel = chart1.AxisX.Title.Text;

string strXAxisValue = "";

double dblVal = chart1.Data[e.Series, e.Point];

chart1.Points[e.Series, e.Point].Text = strXAxisLabel + " Value : " + dblVal;

}

chart1.GetTip += new ChartFX.WinForms.GetTipEventHandler(chart1_GetTip);

}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...