scatter3D.py
316 字节
from ... import types
from ...charts.chart import ThreeAxisChart
from ...options import InitOpts
class Scatter3D(ThreeAxisChart):
"""
<<< 3D Scatter-Chart >>>
"""
def __init__(self, init_opts: types.Init = InitOpts()):
super().__init__(init_opts)
self._3d_chart_type = "scatter3D"