W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
series[i]-custom表示ECharts圖表的自定義系列,自定義系列也就是您能夠根據(jù)您自己的需要對ECharts圖表中的圖形元素自定義其渲染方式,這樣做可以幫助您擴展出不一樣的圖表。
同時,echarts 會統(tǒng)一管理圖形的創(chuàng)建刪除、動畫、與其他組件(如 dataZoom、visualMap)的聯(lián)動,使開發(fā)者不必糾結(jié)這些細節(jié)。
例如,下面的例子使用 custom series 擴展出了 x-range 圖:
更多的例子參見:custom examples
您可以參考:自定義系列教程
開發(fā)者自定義渲染邏輯(renderItem 函數(shù)),有關(guān) renderItem 函數(shù)的詳細內(nèi)容您可以參考下節(jié)內(nèi)容。
custom 系列需要開發(fā)者自己提供圖形渲染的邏輯。這個渲染邏輯一般命名為 renderItem。例如:
var option = {
...,
series: [{
type: 'custom',
renderItem: function (params, api) {
var categoryIndex = api.value(0);
var start = api.coord([api.value(1), categoryIndex]);
var end = api.coord([api.value(2), categoryIndex]);
var height = api.size([0, 1])[1] * 0.6;
return {
type: 'rect',
shape: echarts.graphic.clipRectByRect({
x: start[0],
y: start[1] - height / 2,
width: end[0] - start[0],
height: height
}, {
x: params.coordSys.x,
y: params.coordSys.y,
width: params.coordSys.width,
height: params.coordSys.height
}),
style: api.style()
};
},
data: data
}]
}
對于 data 中的每個數(shù)據(jù)項(為方便描述,這里稱為 dataItem),會調(diào)用此 renderItem 函數(shù)。
renderItem 函數(shù)提供了兩個參數(shù):
renderItem 函數(shù)須返回根據(jù)此 dataItem 繪制出的圖形元素的定義信息,參見 renderItem.return。
一般來說,renderItem 函數(shù)的主要邏輯,是將 dataItem 里的值映射到坐標系上的圖形元素。這一般需要用到 renderItem.arguments.api 中的兩個函數(shù):
有時候還需要用到 api.size(...) 函數(shù),表示得到坐標系上一段數(shù)值范圍對應(yīng)的長度。
返回值中樣式的設(shè)置可以使用 api.style(...) 函數(shù),他能得到 series.itemStyle.normal 中定義的樣式信息,以及視覺映射的樣式信息。也可以用這種方式覆蓋這些樣式信息:api.style({fill: 'green', stroke: 'yellow'})。
維度的映射(encode 和 dimensions 屬性)
custom 系列往往需要定義 series.encode,主要用于指明 data 的哪些維度映射到哪些數(shù)軸上。從而,echarts 能根據(jù)這些維度的值的范圍,畫出合適的數(shù)軸刻度。 同時,encode.tooltip 和 encode.label 也可以被指定,指明默認的 tooltip 和 label 顯示什么內(nèi)容。series.dimensions 也可以被指定,指明顯示在 tooltip 中的維度名稱,或者維度的類型。
例如:
series: {
type: 'custom',
renderItem: function () {
...
},
encode: {
x: [2, 4, 3],
y: 1,
label: 0,
tooltip: [2, 4, 3]
}
}
與 dataZoom 組件的結(jié)合
與 dataZoom 結(jié)合使用的時候,常常使用會設(shè)置 dataZoom.filterMode 為 'weakFilter',從而讓 dataItem 部分超出坐標系邊界的時候,不會整體被過濾掉。
關(guān)于 dataIndex 和 dataIndexInside 的區(qū)別
renderItem.arguments.api 中使用的參數(shù)都是 dataIndexInside 而非 dataIndex,因為從 dataIndex 轉(zhuǎn)換成 dataIndexInside 需要時間開銷。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: