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

scatter with smooth lines and markers in wpf

1 Answer 101 Views
Chart
This is a migrated thread and some comments may be shown as answers.
uday kumar
Top achievements
Rank 1
uday kumar asked on 24 Aug 2015, 02:03 AM

Hello Team,

I want to know exact rad chart which will work like "excel scatter with smooth line and markers". I am able to find either scatter with smooth lines( no markers) or scatter points(no lines). I want both in single chart in wpf. Same chart i can find in asp.net and the following is url.

http://demos.telerik.com/aspnet-ajax/htmlchart/examples/charttypes/scatterlinechart/defaultcs.aspx

I mean data points should be highlighted like above. Please let me know your answer.

Thanks,

Udaya Kumar

1 Answer, 1 is accepted

Sort by
0
Martin Ivanov
Telerik team
answered on 24 Aug 2015, 08:32 AM
Hi Udaya,

You can achieve your requirement by using the ScatterLineSeries with a PointTemplate. Here is an example:
<telerik:ScatterLineSeries>
    <telerik:ScatterLineSeries.PointTemplate>
        <DataTemplate>
            <Ellipse Width="7" Height="7" Fill="Red" />
        </DataTemplate>
    </telerik:ScatterLineSeries.PointTemplate>
</telerik:ScatterLineSeries>
I hope this helps.

Regards,
Martin
Telerik
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 Feedback Portal and vote to affect the priority of the items
Tags
Chart
Asked by
uday kumar
Top achievements
Rank 1
Answers by
Martin Ivanov
Telerik team
Share this question
or