codecamp

pyecharts HTML 组件

Component 通用配置项

class ComponentTitleOpts(
    # 主标题,支持 \n 换行
    title: str = "",

    # 副标题,支持 \n 换行
    subtitle: str = "",

    # 主标题 CSS 样式
    title_style: Optional[dict] = None,

    # 副标题 CSS 样式
    subtitle_style: Optional[dict] = None,
)
Note: 目前 Table 和 Image 两者与 Page 类并不兼容

Table:表格

class pyecharts.components.Table
class Table(
    # HTML 标题
    page_title: str = CurrentConfig.PAGE_TITLE,

    # 远程 HOST,默认为 "https://assets.pyecharts.org/assets/"
    js_host: str = "",
)
func pyecharts.components.Table.add
def add(
    # 表格 headers
    headers: Sequence,

    # 表格数据
    rows: Sequence, 

    # 表格样式属性
    attributes: Optional[dict] = None
)
func pyecharts.components.Table.set_global_opts
def set_global_opts(
    # 标题配置项,参考 `ComponentTitleOpts`
    title_opts: Union[ComponentTitleOpts, dict, None] = None
)

Demo

gallery 示例

Image:图像

class pyecharts.components.Image
class Image(
    # HTML 标题
    page_title: str = CurrentConfig.PAGE_TITLE,

    # 远程 HOST,默认为 "https://assets.pyecharts.org/assets/"
    js_host: str = "",
)
func pyecharts.components.Image.add
def add(
    # 图像 src
    src: str, 

    # <img> 标签 CSS 样式
    style_opts: Optional[dict] = None
)
func pyecharts.components.Image.set_global_opts
def set_global_opts(
    # 标题配置项,参考 `ComponentTitleOpts`
    title_opts: Union[ComponentTitleOpts, dict, None] = None
)

Demo

gallery 示例


pyecharts 组合图表
pyecharts 参数传递
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

pyecharts 其他资源

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }