This is a migrated thread and some comments may be shown as answers.

Intersection points show over trackball info

7 Answers 123 Views
ChartView
This is a migrated thread and some comments may be shown as answers.
DMM
Top achievements
Rank 1
DMM asked on 13 Jun 2012, 01:20 PM
Can I get the trackball info to be topmost over the intersection points on the series that are highlighted as I move the trackball?

I am getting the intersection points on top of the trackball info and I do not want that.  I still do want the intersection points to be shown when not over the trackball info tooltip.

Thanks!

7 Answers, 1 is accepted

Sort by
0
Yavor
Telerik team
answered on 18 Jun 2012, 09:31 AM
Hello David,

Indeed the behavior you are observing is not correct and has been identified as bug by our development team. Before a fix is available you can try adjusting the range of your vertical axis in order for the trackball to be displayed on top of the series. Another approach could be to hide the trackball popup and display the information elsewhere in your app like in this online demo.

Hope this helps!

All the best,
Yavor
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Hen
Top achievements
Rank 1
Veteran
answered on 29 Sep 2020, 02:35 PM

Hello

Was a fix for this issue was released?

Thanks!

0
Martin Ivanov
Telerik team
answered on 30 Sep 2020, 09:24 AM

Hello Hen,

This issue was fixed back in September 2012.

Regards,
Martin Ivanov
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

0
Hen
Top achievements
Rank 1
Veteran
answered on 30 Sep 2020, 03:42 PM

Hello Martin,

I encountering this issue. Is there a way to influence the location of the info tooltip? So it will not hide the selected point on the graph?

0
Martin Ivanov
Telerik team
answered on 02 Oct 2020, 12:59 PM

Hello David,

You can manually set the ZIndex to the TrackBallInfoControl like this:

 private void RadCartesianChart_Loaded(object sender, RoutedEventArgs e)
{
	var chart = (RadCartesianChart)sender;
	var trackBallInfo = chart.FindChildByType<TrackBallInfoControl>();
	Canvas.SetZIndex(trackBallInfo, 10);
}

If you want to offset the TrackBallInfoControl so that the intersection points are visible, you can use negative top margin like this:

<telerik:RadCartesianChart.TrackBallInfoStyle>	
	<Style TargetType="telerik:TrackBallInfoControl">
		<Setter Property="Margin" Value="0 -100 0 0" />	
	</Style>
</telerik:RadCartesianChart.TrackBallInfoStyle>

To avoid the clipping of the element, set the CliptToBounds property of RadCartesianChart to False.

<telerik:RadCartesianChart ClipToBounds="False">

Regards,
Martin Ivanov
Progress Telerik

Five days of Blazor, Angular, React, and Xamarin experts live-coding on twitch.tv/CodeItLive, special prizes, and more, for FREE?! Register now for DevReach 2.0(20).

0
Hen
Top achievements
Rank 1
Veteran
answered on 06 Oct 2020, 07:36 AM
If we still encounter this issue , what can be done? is there a way to influence the location of the info tooltip?
0
Hen
Top achievements
Rank 1
Veteran
answered on 06 Oct 2020, 09:07 AM

Ok Got it

 thank you

Tags
ChartView
Asked by
DMM
Top achievements
Rank 1
Answers by
Yavor
Telerik team
Hen
Top achievements
Rank 1
Veteran
Martin Ivanov
Telerik team
Share this question
or