We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5c1213 commit 4673204Copy full SHA for 4673204
1 file changed
plotpy/panels/csection/csplot.py
@@ -436,7 +436,7 @@ def connect_plot(self, plot: BasePlot) -> None:
436
)
437
438
439
-class XCrossSectionPlot(HorizontalCrossSectionPlot, XYCrossSectionMixin):
+class XCrossSectionPlot(XYCrossSectionMixin, HorizontalCrossSectionPlot):
440
"""X-axis cross section plot"""
441
442
_HEIGHT = 130
@@ -450,7 +450,7 @@ def create_cross_section_item(self) -> XCrossSectionItem:
450
return XCrossSectionItem(self.param)
451
452
453
-class YCrossSectionPlot(VerticalCrossSectionPlot, XYCrossSectionMixin):
+class YCrossSectionPlot(XYCrossSectionMixin, VerticalCrossSectionPlot):
454
"""Y-axis cross section plot"""
455
456
_WIDTH = 140
0 commit comments