-
I wanna show for example dates in range 13.01.2020 to 16.01.2020, but exclude 14 and 15 days of january. How I can to do it ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Since the time axis is basically a linear axis, it doesn't supports jumps in the time. You could implement your own axis with a custom transform that skips these days. If you look at the parts of the code that implement the logarithmic axis you might get an idea of what would be needed for this. It might upset things like the Zoomer plugin though. Another option could be to add a chart for every timespan and have only the first one have a y axis. You can then use the y axis of the first chart in all the other charts too. Of course things like zoom will not work and you have to split your dataset manually into your intervals. |
Beta Was this translation helpful? Give feedback.
Since the time axis is basically a linear axis, it doesn't supports jumps in the time. You could implement your own axis with a custom transform that skips these days. If you look at the parts of the code that implement the logarithmic axis you might get an idea of what would be needed for this. It might upset things like the Zoomer plugin though.
Another option could be to add a chart for every timespan and have only the first one have a y axis. You can then use the y axis of the first chart in all the other charts too. Of course things like zoom will not work and you have to split your dataset manually into your intervals.