This question is locked. New answers and comments are not allowed.
Hello
Mouse Enter and Mouse Leave never executes, is as if they are not there
the following works
ItemToolTipOpening="ChartArea_ItemToolTipOpening" ItemToolTipClosing="ChartArea_ItemToolTipClosing"
but I wonder
How could i have or do Mouse Events for each bar ( I need to pop up a tooltip with different values for each bar, for example )
Regards
<Style x:Name="CustomStyle" TargetType="telerik:Bar"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="telerik:Bar"> <Grid> <Rectangle x:Name="PART_DefiningGeometry" RadiusX="5" RadiusY="5" StrokeThickness="2" Fill="{Binding DataItem.StatusReturningColorBrush}" MouseEnter="content_MouseEnter" MouseLeave="content_MouseLeave" /> </Grid> </ControlTemplate> </Setter.Value> </Setter> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="telerik:Bar"> <Canvas x:Name="PART_CanvasContainer" Opacity="0" MouseEnter="content_MouseEnter" MouseLeave="content_MouseLeave"> </Canvas> </ControlTemplate> </Setter.Value> </Setter>Mouse Enter and Mouse Leave never executes, is as if they are not there
the following works
ItemToolTipOpening="ChartArea_ItemToolTipOpening" ItemToolTipClosing="ChartArea_ItemToolTipClosing"
but I wonder
How could i have or do Mouse Events for each bar ( I need to pop up a tooltip with different values for each bar, for example )
Regards