-
通过Bar()构建一个柱状图对象
-
和折线图一样,通过add_xaxis()和add_yaxis()添加x和y轴数据
-
通过柱状图对象的:reversal_axis(),反转x和y轴
-
通过label_opts=LabelOpts(position=“right”)设置数值标签在右侧显示
-
什么是时间线?
from pyecharts.charts import Timeline
timeline = Timeline() -
自动播放
-
如何设置主题
timeline = Timeline({“theme”: ThemeType.LIGHT})
"""
基础柱状图的开发
"""
from pyecharts.charts import Bar,Timeline
from pyecharts.options import LabelOpts
from pyecharts.globals import ThemeType
bar1=Bar()
bar1.add_xaxis(["中国","美国","英国"])
bar1.add_yaxis("GDP",[30,30,20],label_opts=LabelOpts(position="right"))
bar1.reversal_axis()
bar2=Bar()
bar2.add_xaxis(["中国","美国","英国"])
bar2.add_yaxis("GDP",[50,50,50],label_opts=LabelOpts(position="right"))
bar2.reversal_axis()
bar3=Bar()
bar3.add_xaxis(["中国","美国","英国"])
bar3.add_yaxis("GDP",[70,60,50],label_opts=LabelOpts(position="right"))
bar3.reversal_axis()
#构建时间线对象,主题设置
timeline=Timeline({"theme":ThemeType.LIGHT})
#在时间线内添加柱状图对象
timeline.add(bar1,"点1")
timeline.add(bar2,"点2")
timeline.add(bar3,"点3")
#自动播放设置
timeline.add_schema(
play_interval=1000, #自动播放时间间隔,单位毫秒
is_timeline_show=True, #是否在自动播放时显示时间线
is_auto_play=True, #是否自动播放
is_loop_play=True #是否循环自动播放
)
#绘图,#绘图是用时间线对象绘图而不是bar
timeline.render("基础时间线柱状图.html")