Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 714 Bytes

heatmap_with_label_show.md

File metadata and controls

30 lines (24 loc) · 714 Bytes

pyecharts 代码 / 效果

import random

from pyecharts import options as opts
from pyecharts.charts import HeatMap
from pyecharts.faker import Faker

value = [[i, j, random.randint(0, 50)] for i in range(24) for j in range(7)]
c = (
    HeatMap()
    .add_xaxis(Faker.clock)
    .add_yaxis(
        "series0",
        Faker.week,
        value,
        label_opts=opts.LabelOpts(is_show=True, position="inside"),
    )
    .set_global_opts(
        title_opts=opts.TitleOpts(title="HeatMap-Label 显示"),
        visualmap_opts=opts.VisualMapOpts(),
    )
    .render("heatmap_with_label_show.html")
)
<iframe width="100%" height="800px" src="Heatmap/heatmap_with_label_show.html"></iframe>