I have to do a line charts with threshold y=5 where y>5 circle color is green y<5 circle color is red and circle y=5 circle color is orange. Using simple threshold i can draw only 2 color in red and green but i can't do the orange one.
{ name: 'Series1', data: [ {y:2}, {y:6}, {y:5}, {y:6.5}, {y:3}, {y:10} ], threshold: 4, negativeColor: "red", color: "green" }
How can i do my chart with 3 color circle using threshold? and how can i take color only in circle but grey in line connected circle?