W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
設置 ECharts 日歷坐標分隔線的樣式。
[ default: true ]
是否顯示日歷坐標系分隔線。默認顯示。
設置 ECharts 日歷坐標系分隔線顏色。
[ default: #000 ]
日歷坐標系分隔線的顏色。
顏色可以使用 RGB 表示,比如 'rgb(128, 128, 128)',如果想要加上 alpha 通道表示不透明度,可以使用 RGBA,比如 'rgba(128, 128, 128, 0.5)',也可以使用十六進制格式,比如 '#ccc'。除了純色之外顏色也支持漸變色和紋理填充。
// 線性漸變,前四個參數(shù)分別是 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
}
// 徑向漸變,前三個參數(shù)分別是圓心 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'
}
[ default: 1 ]
日歷坐標系分隔線的線寬。
[ default: solid ]
日歷坐標系分隔線的類型。
可選:
日歷坐標系分隔線圖形陰影的模糊大小。
該屬性配合 shadowColor,shadowOffsetX, shadowOffsetY 一起設置圖形的陰影效果。
示例:
{
shadowColor: 'rgba(0, 0, 0, 0.5)',
shadowBlur: 10
}
陰影顏色。支持的格式同color。
[ default: 0 ]
陰影水平方向上的偏移距離。
[ default: 0 ]
陰影垂直方向上的偏移距離。
圖形透明度。支持從 0 到 1 的數(shù)字,為 0 時不繪制該圖形。
例如:
calendar: [{
splitLine: {
show: true,
lineStyle: {
color: '#000',
width: 1,
type: 'solid'
}
}
}]
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: