# encoding: utf-8
# module PyQt5.QtChart
# from C:\Programs\Python\Python313\Lib\site-packages\PyQt5\QtChart.pyd
# by generator 1.147
# no doc

# imports
import PyQt5.QtCore as __PyQt5_QtCore
import PyQt5.QtWidgets as __PyQt5_QtWidgets


class QAbstractSeries(__PyQt5_QtCore.QObject):
    # no doc
    def attachAxis(self, axis, QAbstractAxis=None): # real signature unknown; restored from __doc__
        """ attachAxis(self, axis: Optional[QAbstractAxis]) -> bool """
        return False

    def attachedAxes(self): # real signature unknown; restored from __doc__
        """ attachedAxes(self) -> List[QAbstractAxis] """
        return []

    def chart(self): # real signature unknown; restored from __doc__
        """ chart(self) -> Optional[QChart] """
        pass

    def detachAxis(self, axis, QAbstractAxis=None): # real signature unknown; restored from __doc__
        """ detachAxis(self, axis: Optional[QAbstractAxis]) -> bool """
        return False

    def hide(self): # real signature unknown; restored from __doc__
        """ hide(self) """
        pass

    def isVisible(self): # real signature unknown; restored from __doc__
        """ isVisible(self) -> bool """
        return False

    def name(self): # real signature unknown; restored from __doc__
        """ name(self) -> str """
        return ""

    def nameChanged(self, *args, **kwargs): # real signature unknown
        """
        pyqtSignal(*types, name: str = ..., revision: int = ..., arguments: Sequence = ...) -> PYQT_SIGNAL
        
        types is normally a sequence of individual types.  Each type is either a
        type object or a string that is the name of a C++ type.  Alternatively
        each type could itself be a sequence of types each describing a different
        overloaded signal.
        name is the optional C++ name of the signal.  If it is not specified then
        the name of the class attribute that is bound to the signal is used.
        revision is the optional revision of the signal that is exported to QML.
        If it is not specified then 0 is used.
        arguments is the optional sequence of the names of the signal's arguments.
        """
        pass

    def opacity(self): # real signature unknown; restored from __doc__
        """ opacity(self) -> float """
        return 0.0

    def opacityChanged(self, *args, **kwargs): # real signature unknown
        """
        pyqtSignal(*types, name: str = ..., revision: int = ..., arguments: Sequence = ...) -> PYQT_SIGNAL
        
        types is normally a sequence of individual types.  Each type is either a
        type object or a string that is the name of a C++ type.  Alternatively
        each type could itself be a sequence of types each describing a different
        overloaded signal.
        name is the optional C++ name of the signal.  If it is not specified then
        the name of the class attribute that is bound to the signal is used.
        revision is the optional revision of the signal that is exported to QML.
        If it is not specified then 0 is used.
        arguments is the optional sequence of the names of the signal's arguments.
        """
        pass

    def setName(self, name, p_str=None): # real signature unknown; restored from __doc__
        """ setName(self, name: Optional[str]) """
        pass

    def setOpacity(self, opacity): # real signature unknown; restored from __doc__
        """ setOpacity(self, opacity: float) """
        pass

    def setUseOpenGL(self, enable=True): # real signature unknown; restored from __doc__
        """ setUseOpenGL(self, enable: bool = True) """
        pass

    def setVisible(self, visible=True): # real signature unknown; restored from __doc__
        """ setVisible(self, visible: bool = True) """
        pass

    def show(self): # real signature unknown; restored from __doc__
        """ show(self) """
        pass

    def type(self): # real signature unknown; restored from __doc__
        """ type(self) -> QAbstractSeries.SeriesType """
        pass

    def useOpenGL(self): # real signature unknown; restored from __doc__
        """ useOpenGL(self) -> bool """
        return False

    def useOpenGLChanged(self, *args, **kwargs): # real signature unknown
        """
        pyqtSignal(*types, name: str = ..., revision: int = ..., arguments: Sequence = ...) -> PYQT_SIGNAL
        
        types is normally a sequence of individual types.  Each type is either a
        type object or a string that is the name of a C++ type.  Alternatively
        each type could itself be a sequence of types each describing a different
        overloaded signal.
        name is the optional C++ name of the signal.  If it is not specified then
        the name of the class attribute that is bound to the signal is used.
        revision is the optional revision of the signal that is exported to QML.
        If it is not specified then 0 is used.
        arguments is the optional sequence of the names of the signal's arguments.
        """
        pass

    def visibleChanged(self, *args, **kwargs): # real signature unknown
        """
        pyqtSignal(*types, name: str = ..., revision: int = ..., arguments: Sequence = ...) -> PYQT_SIGNAL
        
        types is normally a sequence of individual types.  Each type is either a
        type object or a string that is the name of a C++ type.  Alternatively
        each type could itself be a sequence of types each describing a different
        overloaded signal.
        name is the optional C++ name of the signal.  If it is not specified then
        the name of the class attribute that is bound to the signal is used.
        revision is the optional revision of the signal that is exported to QML.
        If it is not specified then 0 is used.
        arguments is the optional sequence of the names of the signal's arguments.
        """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    SeriesTypeArea = 1
    SeriesTypeBar = 2
    SeriesTypeBoxPlot = 11
    SeriesTypeCandlestick = 12
    SeriesTypeHorizontalBar = 8
    SeriesTypeHorizontalPercentBar = 10
    SeriesTypeHorizontalStackedBar = 9
    SeriesTypeLine = 0
    SeriesTypePercentBar = 4
    SeriesTypePie = 5
    SeriesTypeScatter = 6
    SeriesTypeSpline = 7
    SeriesTypeStackedBar = 3


