class pyecharts.charts.Liquid
class Liquid(# 初始化配置项,参考 `global_options.InitOpts`init_opts: opts.InitOpts = opts.InitOpts())
func pyecharts.charts.Liquid.add
def add(# 系列名称,用于 tooltip 的显示,legend 的图例筛选。series_name: str,# 系列数据,格式为 [value1, value2, ....]data: Sequence,# 水球外形,有' circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow' 可选。# 默认 'circle'。也可以为自定义的 SVG 路径。shape: str = "circle",# 波浪颜色。color: Optional[Sequence[str]] = None,# 是否显示波浪动画。is_animation: bool = True,# 是否显示边框。is_outline_show: bool = True,# 标签配置项,参考 `series_options.LabelOpts`label_opts: Union[opts.LabelOpts, dict] = opts.LabelOpts(font_size=50, position="inside"),# 提示框组件配置项,参考 `series_options.TooltipOpts`tooltip_opts: Union[opts.TooltipOpts, dict, None] = None,)
_
