ECharts时间轴图形样式设置

2018-10-10 10:01 更新

timeline.itemStyle   |   Object

设置 ECharts 时间轴图形样式的时候,您会注意到时间轴图形状态有两种:normal 和 emphasis。normal 是图形在默认状态下的样式;emphasis 是图形在高亮状态下的样式,比如在鼠标悬浮或者图例联动高亮时。

timeline.itemStyle.normal   |   Object

ECharts 时间轴图形在 normal 状态下的样式设置。

timeline.itemStyle.normal.color   |   Color

[ default: '#304654' ]

timeline 图形的颜色。

颜色可以使用 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% 处的颜色
    }],
    globalCoord: 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% 处的颜色
    }],
    globalCoord: false // 缺省为 false
}
// 纹理填充
color: {
    image: imageDom, // 支持为 HTMLImageElement, HTMLCanvasElement,不支持路径字符串
    repeat: 'repeat' // 是否平铺, 可以是 'repeat-x', 'repeat-y', 'no-repeat'
}

timeline.itemStyle.normal.borderColor   |   Color

[ default: "#000" ]

timeline 图形的描边颜色。支持的颜色格式同 color,不支持回调函数。

timeline.itemStyle.normal.borderWidth   |   number

[ default: 1 ]

timeline 描边线宽。为 0 时无描边。

timeline.itemStyle.normal.borderType   |   string

[ default: 'solid' ]

柱条的描边类型,默认为实线,支持 'solid', 'dashed', 'dotted'。

timeline.itemStyle.normal.shadowBlur   |   number

图形阴影的模糊大小。该属性配合 shadowColor,shadowOffsetX, shadowOffsetY 一起设置图形的阴影效果。

示例:

{
    shadowColor: 'rgba(0, 0, 0, 0.5)',
    shadowBlur: 10
}

timeline.itemStyle.normal.shadowColor   |   Color

阴影颜色。支持的格式同color。

timeline.itemStyle.normal.shadowOffsetX   |   number

[ default: 0 ]

阴影水平方向上的偏移距离。

timeline.itemStyle.normal.shadowOffsetY   |   number

[ default: 0 ]

阴影垂直方向上的偏移距离。

timeline.itemStyle.normal.opacity   |   number

图形透明度。支持从 0 到 1 的数字,为 0 时不绘制该图形。

timeline.itemStyle.emphasis   |   Object

ECharts 时间轴图形在 emphasis 状态下的样式设置。

timeline.itemStyle.emphasis.color   |   Color

[ default: '#c23531' ]

timeline 图形的颜色。

颜色可以使用 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% 处的颜色
    }],
    globalCoord: 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% 处的颜色
    }],
    globalCoord: false // 缺省为 false
}
// 纹理填充
color: {
    image: imageDom, // 支持为 HTMLImageElement, HTMLCanvasElement,不支持路径字符串
    repeat: 'repeat' // 是否平铺, 可以是 'repeat-x', 'repeat-y', 'no-repeat'
}

timeline.itemStyle.emphasis.borderColor   |   Color

[ default: "#000" ]

timeline 图形的描边颜色。支持的颜色格式同 color,不支持回调函数。

timeline.itemStyle.emphasis.borderWidth   |   number

[ default: 1 ]

timeline 描边线宽。为 0 时无描边。

timeline.itemStyle.emphasis.borderType   |   string

[ default: 'solid' ]

柱条的描边类型,默认为实线,支持 'solid', 'dashed', 'dotted'。

timeline.itemStyle.emphasis.shadowBlur   |   number

图形阴影的模糊大小。该属性配合 shadowColor,shadowOffsetX, shadowOffsetY 一起设置图形的阴影效果。

示例:

{
    shadowColor: 'rgba(0, 0, 0, 0.5)',
    shadowBlur: 10
}

timeline.itemStyle.emphasis.shadowColor   |   Color

阴影颜色。支持的格式同color。

timeline.itemStyle.emphasis.shadowOffsetX   |   number

[ default: 0 ]

阴影水平方向上的偏移距离。

timeline.itemStyle.emphasis.shadowOffsetY   |   number

[ default: 0 ]

阴影垂直方向上的偏移距离。

timeline.itemStyle.emphasis.opacity   |   number

图形透明度。支持从 0 到 1 的数字,为 0 时不绘制该图形。

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号