当前位置: 首页>>代码示例>>Python>>正文


Python Line._repr_html_方法代码示例

本文整理汇总了Python中pyecharts.Line._repr_html_方法的典型用法代码示例。如果您正苦于以下问题:Python Line._repr_html_方法的具体用法?Python Line._repr_html_怎么用?Python Line._repr_html_使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyecharts.Line的用法示例。


在下文中一共展示了Line._repr_html_方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_line_type_fil

# 需要导入模块: from pyecharts import Line [as 别名]
# 或者: from pyecharts.Line import _repr_html_ [as 别名]
def test_line_type_fil():
    line = Line("折线图-面积图示例")
    line.add("商家A", CLOTHES, clothes_v1, is_fill=True, line_opacity=0.2,
             area_opacity=0.4, symbol=None)
    line.add("商家B", CLOTHES, clothes_v2, is_fill=True, area_color='#000',
             area_opacity=0.3, is_smooth=True)
    assert '"step": true' not in line._repr_html_()
开发者ID:chumingke,项目名称:pyecharts,代码行数:9,代码来源:test_line.py

示例2: test_line_user_define_markpoint

# 需要导入模块: from pyecharts import Line [as 别名]
# 或者: from pyecharts.Line import _repr_html_ [as 别名]
def test_line_user_define_markpoint():
    line = Line("折线图示例")
    line.add(
        "商家A",
        CLOTHES,
        clothes_v1,
        mark_point=["average", {"coord": ["裤子", 10], "name": "这是我想要的第一个标记点"}],
    )
    line.add(
        "商家B",
        CLOTHES,
        clothes_v2,
        is_smooth=True,
        mark_point=[{"coord": ["袜子", 80], "name": "这是我想要的第二个标记点"}],
    )
    html_content = line._repr_html_()
    assert '"value": 80' in html_content
    assert '"value": 10' in html_content
开发者ID:Jesszen,项目名称:pyecharts,代码行数:20,代码来源:test_line.py

示例3: test_line_user_define_marks

# 需要导入模块: from pyecharts import Line [as 别名]
# 或者: from pyecharts.Line import _repr_html_ [as 别名]
def test_line_user_define_marks():
    line = Line("折线图示例")
    line.add(
        "商家A",
        CLOTHES,
        clothes_v1,
        mark_point=["average", "max", "min"],
        symbol_size=50,
        mark_point_symbol="diamond",
        mark_point_textcolor="#40ff27",
    )
    line.add(
        "商家B",
        CLOTHES,
        clothes_v2,
        mark_point=["average", "max", "min"],
        mark_point_symbol="arrow",
        mark_point_symbolsize=40,
    )
    assert '"symbolSize":50' not in line._repr_html_()
开发者ID:Jesszen,项目名称:pyecharts,代码行数:22,代码来源:test_line.py

示例4: test_line_type_step

# 需要导入模块: from pyecharts import Line [as 别名]
# 或者: from pyecharts.Line import _repr_html_ [as 别名]
def test_line_type_step():
    line = Line("折线图-阶梯图示例")
    line.add("商家A", CLOTHES, clothes_v1, is_step=True, is_label_show=True)
    assert '"step": true' in line._repr_html_()
开发者ID:chumingke,项目名称:pyecharts,代码行数:6,代码来源:test_line.py


注:本文中的pyecharts.Line._repr_html_方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。