Hi Valery,
Starting with your older post:
1. The cartesian area supports the mentioned axes. However, according to the data that you want to plot it is suitable to use a different axis with appropriate series type. For example, ScatterLineSeries allow data represented as a line to be plotted against two Linear axes. LineSeries plot their CategoricalDataPoints on the cartesian area using one categorical and one numerical axis, etc. However, since our customer feedback is very important to us we will consider adding additional information in the articles about how different axis should be used.
2. LineSeries/FastLineSeries uses CategoricalDataPoints. These points are plotted on the cartesian area that has a horizontal axis for category values and vertical axis for numeric values. This decision is by design and it allows plotting object values along the horizontal axis.
3. You are right that the DateTimeContinuous axis and Linear axis have similar behavior. The DateTimeContinuous axis is a numerical axis that plots chronologically sorted DateTime values while Linear axis plots categorical values (that are of type object).
4. You can use the Linear axis for ScatterLineSeries since ScatterLineSeries uses numeric values – XValue and YValue for the horizontal and for the vertical axis respectively while the LineSeries uses one numeric value for YValue and one categorical value (of type object) for XValue.
5. The cartesian area represents a standard Cartesian coordinate system where the position of each point on the plane is identified through a pair of values. Here can be plotted Bar, Line, Area, Scatter series etc. since they all have some value for the horizontal axis and another value for the vertical axis. Apart from the cartesian area the pie area, for example, does not use any axis, it displays each data point as slices. More information about different areas and the supported series you can find here: Series type.
Newer post:
1. The LinearAxis has a MajorStep property determining the step at which each of the ticks will be plotted. The axis also has a Minimum and Maximum properties defining and min and max values it can display. In this particular setup, the Minumum property remains with its default value which is double.NegativeInfinity and because the step between the values is very small the entire line gets shifted to the right. You have two options:
- Set the Minimum property to a custom value suitable for your data:
var horizontalAxis = new LinearAxis { Title = "Ln" };
horizontalAxis.Minimum = 14.164;

- Increase the MajorStep property:
var horizontalAxis = new LinearAxis { Title = "Ln" };
horizontalAxis.MajorStep = 0.01;

2. Currently, the scatter series does not support empty values. You can refer to the attached sample project with a possible implementation. Please note that this is a sample approach and it may not cover all possible cases. Below is a screenshot with the result on my end:

I found supporting null values in scatter series a reasonable request. This is why I have logged a feature request on your behalf in our Feedback portal. You can track its progress, subscribe for status changes, and add your comments on the following link - feedback item.
I have also updated your Telerik Points.
I hope this information helps. If you have other questions please let me know.
Regards,
Nadya
Progress Telerik
Progress is here for your business, like always.
Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.