W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
角度軸指示器的文本標(biāo)簽設(shè)置。
[ default: false ]
是否顯示角度軸指示器的文本標(biāo)簽。如果 tooltip.axisPointer.type 設(shè)置為 'cross' 則默認(rèn)顯示標(biāo)簽,否則默認(rèn)不顯示。
[ default: 'auto' ]
角度軸指示器文本標(biāo)簽中數(shù)值的小數(shù)點(diǎn)精度。默認(rèn)根據(jù)當(dāng)前軸的值自動(dòng)判斷。也可以指定如 2 表示保留兩位小數(shù)。
[ default: null ]
角度軸指示器文本標(biāo)簽文字的格式化器。
參數(shù):
{Object} params: 含有:
{Object} params.value: 軸當(dāng)前值,如果 axis.type 為 'category' 時(shí),其值為 axis.data 里的數(shù)值。如果 axis.type 為 'time',其值為時(shí)間戳。
{Array.<Object>} params.seriesData: 一個(gè)數(shù)組,是當(dāng)前 axisPointer 最近的點(diǎn)的信息,每項(xiàng)內(nèi)容為:
{
componentType: 'series',
// 系列類型
seriesType: string,
// 系列在傳入的 option.series 中的 index
seriesIndex: number,
// 系列名稱
seriesName: string,
// 數(shù)據(jù)名,類目名
name: string,
// 數(shù)據(jù)在傳入的 data 數(shù)組中的 index
dataIndex: number,
// 傳入的原始數(shù)據(jù)項(xiàng)
data: Object,
// 傳入的數(shù)據(jù)值
value: number|Array,
// 數(shù)據(jù)圖形的顏色
color: string,
}
每項(xiàng)內(nèi)容還包括軸的信息:
{
axisDim: 'x', // 'x', 'y', 'angle', 'radius', 'single'
axisId: 'xxx',
axisName: 'xxx',
axisIndex: 3,
axisValue: 121, // 當(dāng)前 axisPointer 對應(yīng)的 value。
axisValueLabel: '文本'
}
返回值:
顯示的 string。
例如:
formatter: function (params) {
// 假設(shè)此軸的 type 為 'time'。
return 'some text' + echarts.format.formatTime(params.value);
}
[ default: 3 ]
角度軸指示器 label 距離軸的距離。
設(shè)置角度軸指示器中的文字樣式,詳細(xì)的樣式設(shè)置在下節(jié)內(nèi)容中描述。
[ default: [5, 7, 5, 7] ]
設(shè)置 axisPointer 的內(nèi)邊距,單位為 px,默認(rèn)各方向內(nèi)邊距為 5px,接受數(shù)組分別設(shè)定上右下左邊距。
使用示例:
// 設(shè)置內(nèi)邊距為 5
padding: 5
// 設(shè)置上下的內(nèi)邊距為 5,左右的內(nèi)邊距為 10
padding: [5, 10]
// 分別設(shè)置四個(gè)方向的內(nèi)邊距
padding: [
5, // 上
10, // 右
5, // 下
10, // 左
]
[ default: 'auto' ]
角度軸指示器文本標(biāo)簽的背景顏色,默認(rèn)是和 axis.axisLine.lineStyle.color 相同。
[ default: null ]
角度軸指示器文本標(biāo)簽的邊框顏色。
[ default: 0 ]
角度軸指示器文本標(biāo)簽的邊框?qū)挾取?/p>
[ default: 3 ]
角度軸指示器文本標(biāo)簽圖形陰影的模糊大小。該屬性配合 shadowColor,shadowOffsetX, shadowOffsetY 一起設(shè)置圖形的陰影效果。
示例:
{
shadowColor: 'rgba(0, 0, 0, 0.5)',
shadowBlur: 10
}
[ default: #aaa ]
角度軸指示器文本標(biāo)簽圖形陰影的顏色。支持的格式同color。
[ default: 0 ]
角度軸指示器文本標(biāo)簽圖形陰影在水平方向上的偏移距離。
[ default: 0 ]
角度軸指示器文本標(biāo)簽圖形陰影在垂直方向上的偏移距離。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: