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
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 >>
Hello
Was a fix for this issue was released?
Thanks!
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/.
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?
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).
Ok Got it
thank you