Hi,
In my xamDataChart, I created a lineSeries, and data were bound to the lineSeries.
Requirement: When I put on my mouse over one markup and click it, then a popup window is shown. The popup window's content is the value which the markup indicates.
And if the popup window is in other Web project(the window's content is just the value which the markup indicates), not in the silverlight project, how can I popup this window?
Do I make it clear?
Could you please help me to achieve this requirement? Thanks in advance.
Hi Anatoli,
Misson Complete! Thank you very much indeed for your help. Love you...
Hi Charlie,
I made some adjustment in the sample application. Please take a look at the attachment (SLDataChart.zip).
It should resolve all your issue.
Please let me know the result.
Best regards,
Anatoli Iliev
HI Anatoli,
Thanks for you idea. But if all series add: MarkerType="Circle", all series's markup would be "Circle", however,the legend of the series isn't all "Circle". Do I mark it clear? Thanks!
Please try to add the following xaml property for each series you add: MarkerType="Circle"
So your series should look something like this:
<ig:LineSeries MarkerType="Circle" Title="Test" ItemsSource="{Binding}" YAxis="{Binding ElementName=LineYAxis}" XAxis="{Binding ElementName=CategoryDateTimeXAxis}" ValueMemberPath="Value1" />
Please let me know if this resolves your issues.
Hello Anatoli,
The solution you provided indeed achieve my requirement. But if I have multiple lineSeries, I found that only the first lineSeries achieve the
requirement, other lineSeries still keep "arrow" when putting mouse over markup. Can please help investigate this? Thanks!