W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
在 rich 里面,可以自定義富文本樣式。利用富文本樣式,可以在標(biāo)簽中做出非常豐富的效果。
例如:
label: {
normal: {
// 在文本中,可以對(duì)部分文本采用 rich 中定義樣式。
// 這里需要在文本中使用標(biāo)記符號(hào):
// `{styleName|text content text content}` 標(biāo)記樣式名。
// 注意,換行仍是使用 '\n'。
formatter: [
'{a|這段文本采用樣式a}',
'{b|這段文本采用樣式b}這段用默認(rèn)樣式{x|這段用樣式x}'
].join('\n'),
rich: {
a: {
color: 'red',
lineHeight: 10
},
b: {
backgroundColor: {
image: 'xxx/xxx.jpg'
},
height: 40
},
x: {
fontSize: 18,
fontFamily: 'Microsoft YaHei',
borderColor: '#449933',
borderRadius: 4
},
...
}
}
}
詳情參見(jiàn)教程:富文本標(biāo)簽
[ default: "#fff" ]
設(shè)置刻度標(biāo)簽文字的顏色。
[ default: 'normal' ]
設(shè)置刻度標(biāo)簽文字字體的風(fēng)格
可選:
[ default: normal ]
設(shè)置刻度標(biāo)簽文字字體的粗細(xì)
可選:
[ default: 'sans-serif' ]
設(shè)置刻度標(biāo)簽文字的字體系列
還可以是 'serif' , 'monospace', 'Arial', 'Courier New', 'Microsoft YaHei', ...
[ default: 12 ]
設(shè)置刻度標(biāo)簽文字的字體大小
設(shè)置刻度標(biāo)簽文字的水平對(duì)齊方式,默認(rèn)自動(dòng)。
可選:
rich 中如果沒(méi)有設(shè)置 align,則會(huì)取父層級(jí)的 align。例如:
{
align: right,
rich: {
a: {
// 沒(méi)有設(shè)置 `align`,則 `align` 為 right
}
}
}
設(shè)置刻度標(biāo)簽文字的垂直對(duì)齊方式,默認(rèn)自動(dòng)。
可選:
rich 中如果沒(méi)有設(shè)置 verticalAlign,則會(huì)取父層級(jí)的 verticalAlign。例如:
{
verticalAlign: bottom,
rich: {
a: {
// 沒(méi)有設(shè)置 `verticalAlign`,則 `verticalAlign` 為 bottom
}
}
}
設(shè)置刻度標(biāo)簽的行高。
rich 中如果沒(méi)有設(shè)置 lineHeight,則會(huì)取父層級(jí)的 lineHeight。例如:
{
lineHeight: 56,
rich: {
a: {
// 沒(méi)有設(shè)置 `lineHeight`,則 `lineHeight` 為 56
}
}
}
radar.axisLabel.rich.<user defined style name>.backgroundColor | string, Object
[ default: 'transparent' ]
設(shè)置刻度標(biāo)簽文字塊背景色。
可以是直接的顏色值,例如:'#123234', 'red', rgba(0,23,11,0.3)'。
可以支持使用圖片,例如:
backgroundColor: {
image: 'xxx/xxx.png'
// 這里可以是圖片的 URL,
// 或者圖片的 dataURI,
// 或者 HTMLImageElement 對(duì)象,
// 或者 HTMLCanvasElement 對(duì)象。
}
當(dāng)使用圖片的時(shí)候,可以使用 width 或 height 指定高寬,也可以不指定自適應(yīng)。
[ default: 'transparent' ]
設(shè)置刻度標(biāo)簽文字塊邊框顏色。
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字塊邊框?qū)挾取?/p>
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字塊的圓角。
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字塊的內(nèi)邊距。例如:
注意,文字塊的 width 和 height 指定的是內(nèi)容高寬,不包含 padding。
[ default: 'transparent' ]
設(shè)置刻度標(biāo)簽文字塊的背景陰影顏色。
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字塊的背景陰影長(zhǎng)度。
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字塊的背景陰影 X 偏移。
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字塊的背景陰影 Y 偏移。
設(shè)置刻度標(biāo)簽文字塊的寬度。
一般不用指定,不指定則自動(dòng)是文字的寬度。在想做表格項(xiàng)或者使用圖片(參見(jiàn) backgroundColor)時(shí),可能會(huì)使用它。
注意,文字塊的 width 和 height 指定的是內(nèi)容高寬,不包含 padding。
width 也可以是百分比字符串,如 '100%'。表示的是所在文本塊的 contentWidth(即不包含文本塊的 padding)的百分之多少。之所以以 contentWidth 做基數(shù),因?yàn)槊總€(gè)文本片段只能基于 content box 布局。如果以 outerWidth 做基數(shù),則百分比的計(jì)算在實(shí)用中不具有意義,可能會(huì)超出。
注意,如果不定義 rich 屬性,則不能指定 width 和 height。
設(shè)置刻度標(biāo)簽文字塊的高度。
一般不用指定,不指定則自動(dòng)是文字的高度。在使用圖片(參見(jiàn) backgroundColor)時(shí),可能會(huì)使用它。
注意,文字塊的 width 和 height 指定的是內(nèi)容高寬,不包含 padding。
注意,如果不定義 rich 屬性,則不能指定 width 和 height。
[ default: 'transparent' ]
設(shè)置刻度標(biāo)簽文字本身的描邊顏色。
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字本身的描邊寬度。
[ default: 'transparent' ]
設(shè)置刻度標(biāo)簽文字本身的陰影顏色。
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字本身的陰影長(zhǎng)度。
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字本身的陰影 X 偏移。
[ default: 0 ]
設(shè)置刻度標(biāo)簽文字本身的陰影 Y 偏移。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: