def __init__(self, arg=None, color=None, colorsrc=None, opacity=None, opacitysrc=None, size=None, sizesrc=None, symbol=None, symbolsrc=None, **kwargs): """ Construct a new Marker object Parameters ---------- arg dict of properties compatible with this constructor or an instance of plotly.graph_objs.area.Marker color Sets themarkercolor. It accepts either a specific color or an array of numbers that are mapped to the colorscale relative to the max and min values of the array or relative to `marker.cmin` and `marker.cmax` if set. colorsrc Sets the source reference on plot.ly for color . opacity Sets the marker opacity. opacitysrc Sets the source reference on plot.ly for opacity . size Sets the marker size (in px). sizesrc Sets the source reference on plot.ly for size . symbol Sets the marker symbol type. Adding 100 is equivalent to appending "-open" to a symbol name. Adding 200 is equivalent to appending "-dot" to a symbol name. Adding 300 is equivalent to appending "-open-dot" or "dot- open" to a symbol name. symbolsrc Sets the source reference on plot.ly for symbol . Returns ------- Marker """ super(Marker, self).__init__('marker') # Validate arg # ------------ if arg is None: arg = {} elif isinstance(arg, self.__class__): arg = arg.to_plotly_json() elif isinstance(arg, dict): arg = copy.copy(arg) else: raise ValueError("""\ The first argument to the plotly.graph_objs.area.Marker constructor must be a dict or an instance of plotly.graph_objs.area.Marker""") # Import validators # ----------------- from plotly.validators.area import (marker as v_marker) # Initialize validators # --------------------- self._validators['color'] = v_marker.ColorValidator() self._validators['colorsrc'] = v_marker.ColorsrcValidator() self._validators['opacity'] = v_marker.OpacityValidator() self._validators['opacitysrc'] = v_marker.OpacitysrcValidator() self._validators['size'] = v_marker.SizeValidator() self._validators['sizesrc'] = v_marker.SizesrcValidator() self._validators['symbol'] = v_marker.SymbolValidator() self._validators['symbolsrc'] = v_marker.SymbolsrcValidator() # Populate data dict with properties # ---------------------------------- _v = arg.pop('color', None) self.color = color if color is not None else _v _v = arg.pop('colorsrc', None) self.colorsrc = colorsrc if colorsrc is not None else _v _v = arg.pop('opacity', None) self.opacity = opacity if opacity is not None else _v _v = arg.pop('opacitysrc', None) self.opacitysrc = opacitysrc if opacitysrc is not None else _v _v = arg.pop('size', None) self.size = size if size is not None else _v _v = arg.pop('sizesrc', None) self.sizesrc = sizesrc if sizesrc is not None else _v _v = arg.pop('symbol', None) self.symbol = symbol if symbol is not None else _v _v = arg.pop('symbolsrc', None) self.symbolsrc = symbolsrc if symbolsrc is not None else _v # Process unknown kwargs # ---------------------- self._process_kwargs(**dict(arg, **kwargs))
def __init__(self, arg=None, color=None, colorsrc=None, opacity=None, opacitysrc=None, size=None, sizesrc=None, symbol=None, symbolsrc=None, **kwargs): """ Construct a new Marker object Parameters ---------- arg dict of properties compatible with this constructor or an instance of plotly.graph_objs.area.Marker color Area traces are deprecated! Please switch to the "barpolar" trace type. Sets themarkercolor. It accepts either a specific color or an array of numbers that are mapped to the colorscale relative to the max and min values of the array or relative to `marker.cmin` and `marker.cmax` if set. colorsrc Sets the source reference on plot.ly for color . opacity Area traces are deprecated! Please switch to the "barpolar" trace type. Sets the marker opacity. opacitysrc Sets the source reference on plot.ly for opacity . size Area traces are deprecated! Please switch to the "barpolar" trace type. Sets the marker size (in px). sizesrc Sets the source reference on plot.ly for size . symbol Area traces are deprecated! Please switch to the "barpolar" trace type. Sets the marker symbol type. Adding 100 is equivalent to appending "-open" to a symbol name. Adding 200 is equivalent to appending "-dot" to a symbol name. Adding 300 is equivalent to appending "-open-dot" or "dot-open" to a symbol name. symbolsrc Sets the source reference on plot.ly for symbol . Returns ------- Marker """ super(Marker, self).__init__("marker") # Validate arg # ------------ if arg is None: arg = {} elif isinstance(arg, self.__class__): arg = arg.to_plotly_json() elif isinstance(arg, dict): arg = _copy.copy(arg) else: raise ValueError("""\ The first argument to the plotly.graph_objs.area.Marker constructor must be a dict or an instance of plotly.graph_objs.area.Marker""") # Handle skip_invalid # ------------------- self._skip_invalid = kwargs.pop("skip_invalid", False) # Import validators # ----------------- from plotly.validators.area import marker as v_marker # Initialize validators # --------------------- self._validators["color"] = v_marker.ColorValidator() self._validators["colorsrc"] = v_marker.ColorsrcValidator() self._validators["opacity"] = v_marker.OpacityValidator() self._validators["opacitysrc"] = v_marker.OpacitysrcValidator() self._validators["size"] = v_marker.SizeValidator() self._validators["sizesrc"] = v_marker.SizesrcValidator() self._validators["symbol"] = v_marker.SymbolValidator() self._validators["symbolsrc"] = v_marker.SymbolsrcValidator() # Populate data dict with properties # ---------------------------------- _v = arg.pop("color", None) self["color"] = color if color is not None else _v _v = arg.pop("colorsrc", None) self["colorsrc"] = colorsrc if colorsrc is not None else _v _v = arg.pop("opacity", None) self["opacity"] = opacity if opacity is not None else _v _v = arg.pop("opacitysrc", None) self["opacitysrc"] = opacitysrc if opacitysrc is not None else _v _v = arg.pop("size", None) self["size"] = size if size is not None else _v _v = arg.pop("sizesrc", None) self["sizesrc"] = sizesrc if sizesrc is not None else _v _v = arg.pop("symbol", None) self["symbol"] = symbol if symbol is not None else _v _v = arg.pop("symbolsrc", None) self["symbolsrc"] = symbolsrc if symbolsrc is not None else _v # Process unknown kwargs # ---------------------- self._process_kwargs(**dict(arg, **kwargs)) # Reset skip_invalid # ------------------ self._skip_invalid = False