bar3D.py 304 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 from ... import types from ...charts.chart import ThreeAxisChart from ...options import InitOpts class Bar3D(ThreeAxisChart): """ <<< 3D Bar-Chart >>> """ def __init__(self, init_opts: types.Init = InitOpts()): super().__init__(init_opts) self._3d_chart_type = "bar3D"