Jump to content
Software FX Community

Formatting ToolTip For ChartFX Financial Extension


SM1

Recommended Posts

As mentioned in ChartFX documentation we can format tooltip to display the Text property of point, by using

Chart1.ToolTipFormat="%L";

This piece of code is working for simple Charts but not for Charts using Financial Extension.

Is it possible to format tooltip for Financial Extensions also ?

Link to comment
Share on other sites

  • 2 weeks later...

You can format tooltips for Financial Extensions. Just remember that each Chart type is different from the other one and some charts display a kind of data that won't be shown in other charts.

If you try the following variables, they will work fine:

Chart1.ToolTipFormat =

"The series legend is: " + "%s";

Chart1.ToolTipFormat =

"The series index is: " + "%S";

Chart1.ToolTipFormat =

"The data value is: " + "%v";

Chart1.ToolTipFormat =

"The Sum of all points in this series is: " + "%t";

Chart1.ToolTipFormat =

"The Sum of all series for this point is: " + "%T";

Chart1.ToolTipFormat =

"The index for this point is: " + "%N";

 

post-2902-13922409674537_thumb.png

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...