def _get_axis_class()

in chartify/_core/axes.py [0:0]


    def _get_axis_class(cls, x_axis_type, y_axis_type):
        if x_axis_type == "categorical" and y_axis_type == "categorical":
            return CategoricalXYAxes
        elif x_axis_type == "categorical":
            return NumericalYAxis
        elif y_axis_type == "categorical":
            return NumericalXAxis
        elif x_axis_type == "datetime":
            return DatetimeXNumericalYAxes
        return NumericalXYAxes