This question is locked. New answers and comments are not allowed.
I have an information layer with tooltips over shapes like so:
I want to disable the tooltip timeout entirely, so tooltips are visible until the mouse leaves the shape -- they never disappear as the result of a timout. How do I do this?
<telerik:InformationLayer.Reader> <telerik:MapShapeReader Source="{Binding Source={StaticResource DataContext}, Path=StateShapefileSourceUri}" ReadCompleted="StateLayerReaderReadCompleted"> <telerik:MapShapeReader.ToolTipTemplate> <DataTemplate> <telerik:RadChart Tag="{Binding Converter={StaticResource ExtendedDataConverter}, ConverterParameter='STATE_NAME'}" x:Name="drillDownChartState" Height="200" Width="350" Loaded="drillDownChart_Loaded" > </telerik:RadChart> </DataTemplate> </telerik:MapShapeReader.ToolTipTemplate> </telerik:MapShapeReader> </telerik:InformationLayer.Reader>I want to disable the tooltip timeout entirely, so tooltips are visible until the mouse leaves the shape -- they never disappear as the result of a timout. How do I do this?