I'm using the multi-series 2d line chart. I want to make sure the slope of the lines is correct (or at least to scale with each other). This means the x-axis values must be the appropriate distance from each other depending on the actual values.
I'm unsure how to do this even after searching the forums. I did see the ability to put null values, which I could do, but this is very difficult to do with different x-axis value types (e.g. integer vs decimal)...you would have to calculate the smallest x difference between two points and use that to generate the nullable points.
For example, if I have x.y points -> 1.5,5; 3,8; 6,4......that would generate 3 points. On the x-axis there would be three values: 1.5, 3, and 6. I want the points to be the correct distance from each other. 6 would be twice as far away from 3 as 3 is from 1.5. But using my current chart props, I get 3 points all the same x distance from each other. I think maybe scale is what I want but not sure.
Thanks.