I implemented a chart just like the one described in this link:

http://www.scottlogic.co.uk/blog/colin/2009/03/adding-a-location-crosshair-to-silverlight-charts-again/

but I want to replace the crosshair with a circle that moves on the line chart just like in Yahoo! Finance:

http://finance.yahoo.com/echarts?s=GOOG

Now the crosshair moves all over the chart and I don't want this to happen.

I also looked at this topic:

Silverlight Toolkit - Create a chart like Google realtime

but that didn't help me yet.

Do you have any tips/suggestions ?

Thanks a lot.

[Update]: I successfully managed to replace the crosshair with a circle using xaml and code behind in this way:

XAML:

Instead of:

 <Grid Name="Crosshair">
                <Line Name="Vertical" X1="{Binding Path=X}" Y1="0" X2="{Binding Path=X}" Y2="400" Stroke="Black"/>
                <Line Name="Horizontal" X1="0" Y1="{Binding Path=Y}" X2="400" Y2="{Binding Path=Y}" Stroke="Black"/>
            </Grid>

I put:

    <Canvas Name="Crosshair">
<Ellipse Name="mouseCursor" Width="10" Height="10" Stroke="#1A5488" Fill="#1A5488"/>
</Canvas>

C#:

MouseCursor.SetValue(Canvas.ZIndexProperty, 2);
MouseCursor.SetValue(Canvas.LeftProperty, mousePos.X - (MouseCursor.Width / 2));         
MouseCursor.SetValue(Canvas.TopProperty, mousePos.Y - (MouseCursor.Width / 2));   

Now the problem is that I want the mouse to move on the line chart and not all over the chart. I tried to set the TopProperty of the Canvas to some value, but everything that I've tried didn't help me.

I also tried to take the nearest point on the line that is close to the mouse position following the code from this thread:

Select the nearest point in a Silverlight Toolkit chart

but I ended in having my mouse somewhere in the 09:20 - 09:30 interval and the closest point in the chart was found in 09:34, even if I had several points between 09:20 - 09:30.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.