This is a migrated thread and some comments may be shown as answers.

Selected Point on chart

1 Answer 95 Views
Chart
This is a migrated thread and some comments may be shown as answers.
Mickael
Top achievements
Rank 1
Mickael asked on 12 May 2011, 11:10 AM
Hello,

I selected points on my chart by 

this.monGraph.DefaultView.ChartArea.SelectItem(item);

The data are well selected but I don't see it visually on the chart, it
no color change point or another.

How can I do to it change color?

Best regards,

1 Answer, 1 is accepted

Sort by
0
Missing User
answered on 17 May 2011, 11:57 AM
Hello Mickael,

One possible reason for this behavior is that you need to activate the interactivity settings. For example:
<telerik:BarSeriesDefinition.InteractivitySettings>
    <telerik:InteractivitySettings SelectionMode="Multiple" SelectionScope="Item" />
</telerik:BarSeriesDefinition.InteractivitySettings>

Another reason may be that you are using series that do not render separate items (Line, Spline, Area, Range, and all their stacked versions). For this type of series, the InteractivityScope.Item is not supported. In order to be able to select a PointMark on the line you need to use ChartArea_ItemClick event.

Please review the following help topics:
http://www.telerik.com/help/wpf/radchart-features-interactivity.html
http://www.telerik.com/help/wpf/radchart-features-interactivity-effects.html

In case that these directions don't help you to solve the issue, could you please provide more information and code snippets about the implementation of RadChart.

Greetings,
Polina
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Chart
Asked by
Mickael
Top achievements
Rank 1
Answers by
Missing User
Share this question
or