any one?
Hi,
I wanted to show the marker for the current mouse hover location (just like google/yahoo finance) on a xam line chart. I am able to track the current data point and when i put a marker on that location, the xamchart keeps refereshing everytime which is very annoying. Is there a way to show markers for the current location, without refreshing the chart again and again
Thanks
When you say "datapoint labels", are you talking about at a marker? If so, you can do something like this when setting up your datapoint.
Datapoint dp = new DataPoint();// setup the datadp.Marker = new Marker { Type = MarkerType.Circle, Stroke = Brushes.White, Foreground = Brushes.Transparent };
Datapoint dp = new DataPoint();
// setup the data
dp.Marker = new Marker { Type = MarkerType.Circle, Stroke = Brushes.White, Foreground = Brushes.Transparent };
You can change the marker type and the stroke if you like. Setting the Foreground to transparent basically makes the text invisible.
I hope this is what you are referring to and it helps out.
this is the only possibility for now, but you can submit a feature request here: http://devcenter.infragistics.com/protected/requestfeature.aspx
I would like to know how to do this also. I would like my markers to show up along with the tool tip for the Datapoint,