This question is locked. New answers and comments are not allowed.
Hi,
In situation when Chart is on the left side of the page, the leftmost item tooltip is not visible, on the bottom the same situation.
I solve this using following lines of code
tooltip.Content = something;
tooltip.RenderTransform = new TranslateTransform
{
X = newX,
Y = newY
};
I show new radchart with following size
Height = 200;
Width = 350;
as tooltip Content.
for my case I calculate newX and newY values to positioning the tooltip.
Do you plan to create some tooltip positioning intelligence?
Thanks!