Hello!
I am using 3sliders (slider1,slider2,slider3) (min=0 max=5) to get3 scores (score1,score2,score3). I have also createda chart: my PrimaryAxis is a DateTimeAxis { Minimum = new DateTime(2016, 01, 01), Maximum = new DateTime(2020, 12, 30) ,IntervalType = DateTimeIntervalType.Months, Interval = 3} and my SecondaryAxis is a NumericalAxis {Minimum = 0, Maximum = 6, Interval = 1} .
E.g I set the slider1 to 3, slider2 to 4 and slider3 to 3. I would like to display this scores(3,4,3) to the chart with different colors!(the primaryaxis date should be today )
How can I do that? Should I use scatterseries? If yes , is it possible after 3months and a second scoring to connect the scatterseries with a line in order to display progress? Or should I use lineseries? If yes , is it possible to start the lineseries with a point(datamarker) not a line and after 3months and a second scoring to create another datamarker and connect them?
Please let me know if something is unclear ! Thank you for your help!