[pyecharts学习笔记]——系统配置项(LineStyleOpts线样式配置项)

[pyecharts学习笔记]——系统配置项(LineStyleOpts线样式配置项)_第1张图片

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

c = (
    Line()
    .add_xaxis(Faker.choose())
    .add_yaxis("", Faker.values())
    .set_global_opts(title_opts=opts.TitleOpts(title="Line-基本示例"))
    .set_series_opts(
        linestyle_opts=opts.LineStyleOpts(
                # 是否显示
                is_show= True,
                
                # # 线宽。
                width = 10,
            
                # 图形透明度。支持从 0 到 1 的数字,为 0 时不绘制该图形。
                opacity = 0.5,
            
                # 线的弯曲度,0 表示完全不弯曲
                curve = 0,
            
                # 线的类型。可选:
                # 'solid', 'dashed', 'dotted'
                type_ = 'dashed',
            
                # 线的颜色。
                # 颜色可以使用 RGB 表示,比如 'rgb(128, 128, 128)',如果想要加上 alpha 通道表示不透明度,
                # 可以使用 RGBA,比如 'rgba(128, 128, 128, 0.5)',也可以使用十六进制格式,比如 '#ccc'。
                # 除了纯色之外颜色也支持渐变色和纹理填充
                # 
                # 线性渐变,前四个参数分别是 x0, y0, x2, y2, 范围从 0 - 1,相当于在图形包围盒中的百分比,
                # 如果 globalCoord 为 `true`,则该四个值是绝对的像素位置
                # color: {
                #    type: 'linear',
                #    x: 0,
                #    y: 0,
                #    x2: 0,
                #    y2: 1,
                #    colorStops: [{
                #        offset: 0, color: 'red' // 0% 处的颜色
                #    }, {
                #        offset: 1, color: 'blue' // 100% 处的颜色
                #    }],
                #    global: false // 缺省为 false
                # }
                # 
                # 径向渐变,前三个参数分别是圆心 x, y 和半径,取值同线性渐变
                # color: {
                #    type: 'radial',
                #    x: 0.5,
                #    y: 0.5,
                #    r: 0.5,
                #    colorStops: [{
                #        offset: 0, color: 'red' // 0% 处的颜色
                #    }, {
                #        offset: 1, color: 'blue' // 100% 处的颜色
                #    }],
                #    global: false // 缺省为 false
                # }
                # 
                # 纹理填充
                # color: {
                #    image: imageDom, // 支持为 HTMLImageElement, HTMLCanvasElement,不支持路径字符串
                #    repeat: 'repeat' // 是否平铺, 可以是 'repeat-x', 'repeat-y', 'no-repeat'
                # }
                color = '#33CCFF',
            
            
            )
        
        )
    .render("C:/line_base.html")
)

你可能感兴趣的:(#,Pyecharts)