From 4d12640aeea10c5b21eabae23bb0ca95049b9964 Mon Sep 17 00:00:00 2001 From: palewire Date: Tue, 28 Oct 2025 16:24:01 -0400 Subject: [PATCH] docs: add inherited-members to mixin API documentation Add `:inherited-members:` directive to all mixin class documentation (GridDisplayMixin, GridFormatMixin, CustomRangeMixin, CustomTicksMixin) to ensure inherited methods and attributes are displayed in the generated API documentation. This improves documentation completeness by showing the full interface available to users of these mixins. --- docs/user-guide/api/mixins.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/user-guide/api/mixins.rst b/docs/user-guide/api/mixins.rst index e1238fb..48a5ea4 100644 --- a/docs/user-guide/api/mixins.rst +++ b/docs/user-guide/api/mixins.rst @@ -15,6 +15,7 @@ Controls the visibility of grid lines on chart axes. .. autoclass:: GridDisplayMixin :members: + :inherited-members: :show-inheritance: **Example:** @@ -36,6 +37,7 @@ Controls the formatting of grid labels on chart axes. .. autoclass:: GridFormatMixin :members: + :inherited-members: :show-inheritance: **Example:** @@ -60,6 +62,7 @@ Sets custom minimum and maximum values for chart axes. .. autoclass:: CustomRangeMixin :members: + :inherited-members: :show-inheritance: **Example:** @@ -80,6 +83,7 @@ Sets custom tick mark positions on chart axes. .. autoclass:: CustomTicksMixin :members: + :inherited-members: :show-inheritance: **Example:**