There is a comment in Example.xaml file which clearly summarizes what I am trying to.
This file is included in the attach zip file.
Iam having trouble finding and easy way to plot multiple scatter spline lines in a scattor plot.
I am using version 4.5 telerick controls , and specifically the telerik:RadCartesianChart
I gutted out the galley scatter example code in the terlerik examples wpf source project into a simple WPF project.
The project in the example uses telerik:LinearAxis which requires a dependency objext and a half million other things that is needed in this project.
The WPF project just retrieves the data from the same csv file and stores the data in the two same list in the corresponding viewmodel.
public class ExampleViewModel : DataSourceViewModelBase
{
private IEnumerable<HourlyEarnings> _privateData;
private IEnumerable<HourlyEarnings> _publicData;
How can simply just databind these two lists in the view model to the chart in the xaml to produce to scatter spline lines in the chart.
I have a attached the project.
I spent days searching the web for a simple example and everything i found either requires some serviceprovider object that seem not to be for wpf apps, or just information that is worthless or code that does not compile or shown one line.

I have a potentially large database whom I'm trying to query for just the items I want displayed on the page I'm looking at. I understand how to use LINQ take and skip to grab the correct range for each page.
What I am struggling with is setting the RadDataPager.PageCount to a value which would reflect the database's collection size and not the size of the collection in memory. I've tried binding ItemCount to a property that tracks the database collection size similarly to this http://www.telerik.com/forums/itemcount-binding.To my understanding ItemCount in combination with a PageSize binding should create the correct number of pages. I.E. 1 of X.
The question then is; is it possible to set the PageCount to a value that is separate from the size of the collection that the RadDataPager is bound to?
Hi,
I was asked to implement the Excel-like arrow key navigation behavior for RadGridView.
These days users use Microsoft products as a standard. In Excel:
1. After users double click on a cell, with or without making any changes, users cannot leave the cell using arrow keys.
They can leave the cell by clicking on other cell or using Tab
2. When users enter a cell by Tab or one single mouse clicking, with or without making any changes, users can leave the cell using arrow keys.
I want to do the same in RadGridView.
Thanks in advance for help.
I have attached a screenshot of my visual studio project where although I have basically copied your toolbar example the 2 buttons are showing vertically and not horizontally. Any ideas what's wrong?
Using 2017.1.222.45

Currently a bookmark can be inserted by using the RadRichTextbox method InsertBookmark().
Is there a way to insert a bookmark by just using the methods on RadDocument?

Hi All
We are using WPF Telerik RadGrid to display real time data.
We have pre-configured list of values which need to display on the filter of specific column.
We want to display the list of all such values in the filter column and if that values present in the RadGrid datasource or not still we want to display it with checkbox of filter on the column.
Currently, what happens, if we have pre-configured value in the RadGrid data-source then it is available in the filter column.
So the idea here is that, We want to show our own list of filterable values on the specific column.
For example, in the attached screen shot.
We are seeing Country column with Name. This grid is showing only countries what available in the Grid data source.
We want to show all countries in the "Select All" section of filter.
How can we achieve this?
Is is make sense?
Thank you