From b01a685633111bf34d2211df3753f97363994fc4 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Fri, 20 Oct 2023 16:30:50 -0400 Subject: [PATCH] Update axes.md --- doc/python/axes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/python/axes.md b/doc/python/axes.md index ca69802d11..6fdab154ee 100644 --- a/doc/python/axes.md +++ b/doc/python/axes.md @@ -561,7 +561,7 @@ fig.show() #### Exclude Inside Tick Labels from Range -You can use `insiderange` instead of `range` on an axis if you have tick labels positioned on the inside of another axis (`ticklabelposition="inside"`) and you don't want the range to overlap with those labels. +You can use `insiderange` instead of `range` on an axis if you have tick labels positioned on the inside of another axis and you don't want the range to overlap with those labels. In this example, we have a y axis with `ticklabelposition="inside"` and by setting `insiderange=['2018-10-01', '2019-01-01']` on the x axis, the data point of `2018-10-01` is displayed after the y axis labels.