Here are the target output of the chart I want to create.
The chart shows access points channels used and its signal strength. Each access points is represented as spline series.
Here are my progress
As you can see from the above picture, every series is using the first series x values, even when x values for every series is given. It is as if the x values are ignored except for the first series.
Data is organized as follows.
There are 5 series. Each series contains 5 Points. Each points contain 2 values, x and y.
Here are some of the sample data
Series 1
Point | x | y |
1 | 4 | 0 |
2 | 5 | 19.2 |
3 | 6 | 24 |
4 | 7 | 19.2 |
5 | 8 | 0 |
Series 2
Point | x | y |
1 | -1 | 0 |
2 | 0 | 51.2 |
3 | 1 | 64 |
4 | 2 | 51.2 |
5 | 3 | 0 |
The x values of Series 2 are totally being ignored.
The source code for the sample, is available here.
https://github.com/syaifulnizamyahya/SfChart/tree/1815d249f23e02d00634113d1410278d2c51eaa7