Please tell me how to make the chart line always extend beyond its limits to the left or right, even when it's null.
I highlighted the desired result in red on the screenshot, but it's most convenient to look at the example I prepared. If you hold down the right mouse button on the chart and move left/right, it will become clear what the problem is.
my example
I would be very grateful for any advice. Thank you in advance!
Please tell me how to make the chart line always extend beyond its limits to the left or right, even when it's null.
I highlighted the desired result in red on the screenshot, but it's most convenient to look at the example I prepared. If you hold down the right mouse button on the chart and move left/right, it will become clear what the problem is.
my example
I would be very grateful for any advice. Thank you in advance!
Share Improve this question asked Mar 19 at 13:59 VladVlad 721 silver badge4 bronze badges 2- are you looking for filterMode = "none" ? – Matthias Mertens Commented Mar 19 at 17:03
- yes, its works! thank you! can you do this as an answer to the question so that I can mark it as correct? – Vlad Commented Mar 20 at 7:19
1 Answer
Reset to default 1This can be achieved with the filterMode property.
dataZoom: {
...,
filterMode: "none"
}