Source code for ooodev.calc.chart2.chart_error_bar

from __future__ import annotations
from typing import TYPE_CHECKING

from ooodev.adapter.chart2.error_bar_comp import ErrorBarComp
from ooodev.loader import lo as mLo
from ooodev.utils.partial.lo_inst_props_partial import LoInstPropsPartial
from ooodev.utils.partial.prop_partial import PropPartial
from ooodev.utils.partial.qi_partial import QiPartial
from ooodev.utils.partial.service_partial import ServicePartial
from ooodev.utils.partial.the_dictionary_partial import TheDictionaryPartial
from ooodev.adapter.chart2.data.data_sink_partial import DataSinkPartial
from ooodev.calc.chart2.partial.chart_doc_prop_partial import ChartDocPropPartial
from ooodev.calc.partial.calc_doc_prop_partial import CalcDocPropPartial
from ooodev.calc.partial.calc_sheet_prop_partial import CalcSheetPropPartial

if TYPE_CHECKING:
    from com.sun.star.beans import XPropertySet
    from ooodev.loader.inst.lo_inst import LoInst
    from ooodev.calc.chart2.chart_doc import ChartDoc


[docs]class ChartErrorBar( LoInstPropsPartial, ErrorBarComp, ChartDocPropPartial, DataSinkPartial, PropPartial, QiPartial, ServicePartial, TheDictionaryPartial, CalcDocPropPartial, CalcSheetPropPartial, ): """ Class for managing Chart2 ErrorBar. """
[docs] def __init__( self, chart_doc: ChartDoc, lo_inst: LoInst | None = None, component: XPropertySet | None = None ) -> None: """ Constructor Args: lo_inst (mLo.LoInst): Lo Instance. This instance is used to create ``component`` is it is not provided. component (XPropertySet, optional): UNO Chart2 ErrorBar Component. Defaults to None. """ if lo_inst is None: lo_inst = mLo.Lo.current_lo LoInstPropsPartial.__init__(self, lo_inst=lo_inst) # ErrorBarComp will create component if not provided. ErrorBarComp.__init__(self, lo_inst=lo_inst, component=component) # type: ignore ChartDocPropPartial.__init__(self, chart_doc=chart_doc) DataSinkPartial.__init__(self, component=self.component) # type: ignore PropPartial.__init__(self, component=self.component, lo_inst=self.lo_inst) QiPartial.__init__(self, component=self.component, lo_inst=self.lo_inst) ServicePartial.__init__(self, component=self.component, lo_inst=self.lo_inst) TheDictionaryPartial.__init__(self) CalcDocPropPartial.__init__(self, obj=chart_doc.calc_doc) CalcSheetPropPartial.__init__(self, obj=chart_doc.calc_sheet)