option = {
backgroundColor:'#999',
series: [
{ //第一個
type: 'gauge',
radius: '50%', //儀表盤半徑
min: 0,
max: 200,
splitNumber: 10,
axisLine: { // 坐標軸線
lineStyle: { // 屬性lineStyle控制線條樣式
width: 2,
color: [
[0.1, '#eee'],
[0.3, new echarts.graphic.LinearGradient(
0, 1, 0, 0,
[{
offset: 0,
color: '#eee'
}, {
offset: 0.8,
color: 'rgb(13,211,97)'
}]
)],
[0.5, new echarts.graphic.LinearGradient(
0, 1, 0, 0,
[{
offset: 0,
color: 'rgb(13,211,97)'
}, {
offset: 0.8,
color: 'rgb(235,205,6)'
}]
)],
[0.9, new echarts.graphic.LinearGradient(
0, 1, 0, 0,
[{
offset: 0,
color: '#f00'
}, {
offset: 0.8,
color: 'rgb(235,205,6)'
}]
)],
[1, '#f00']
],
}
},
progress: { //進度條
show:false
},
splitLine:{ // 刻度線分界點
distance: 0,
length:12,
itemStyle: {
color: 'inherit'
},
},
axisTick:{ // 小刻度線
show:false
},
pointer:{
show: false, //是否顯示指針
},
axisLabel: { // 刻度數(shù)值
color: 'inherit',
distance: 10,
fontSize: 16
},
detail: { // 是否顯示數(shù)據(jù)詳情
show:false,
},
title: {
show:false,
},
},
{ // 第二個
type: 'gauge',
radius: '56%', //儀表盤半徑
min: 0,
max: 200,
splitNumber: 10,
axisLine: { // 坐標軸線
show:false,
},
progress: { //進度條
show: true, // 是否顯示
roundCap: false, //是否圓角
width: 20, // 寬度
itemStyle: {
opacity: 1,
color: new echarts.graphic.LinearGradient(
0, 0, 1, 0,
[{
offset: 0,
color: 'rgba(100,200,228,1)'
},
{
offset: 0.5,
color: 'rgba(48,62,245,1)'
},
{
offset: 1,
color: 'rgba(48,62,245,1)'
}]
)
}
},
splitLine:{ // 刻度線分界點
show:false,
},
axisTick:{ // 小刻度線
show:false
},
pointer:{
show: false, //是否顯示指針
},
axisLabel: { // 刻度數(shù)值
show:false,
},
detail: { // 是否顯示數(shù)據(jù)詳情
valueAnimation: true, // 開啟動畫
fontSize: 70,
fontFamily: 'DIN Alternate',
offsetCenter: [0, '-18%'],
color: 'inherit'
},
title: {
offsetCenter: [0, '10%'],
fontSize: 20,
color: '#000'
},
data: [
{
value: 90,
name: '空氣質(zhì)量'
}
]
},
{ //第三個
type: 'gauge',
radius: '65%',
axisLine:{
show:false
},
progress: {
show: false,
},
splitLine:{
show: false,
},
axisLabel: {
show: false,
},
axisTick: {
length: 10,
splitNumber: 20,
lineStyle: {
color: '#eee',
width: 1
}
},
pointer:{
show:false,
},
detail: {show:false},
},
{ //第四個
type: 'gauge',
radius: '70%',
axisLine: {
lineStyle: {
color:[[1, '#eee']],
width: 20,
opacity: 0.1
},
show: true
},
progress: {
show: false,
},
splitLine:{
distance: -20,
length: 20,
lineStyle: {
color: '#eee',
opacity: 0.1
},
},
axisLabel: {
show: false,
},
axisTick: {
show: false,
},
pointer:{
show:false,
},
detail: {show:false},
},
{ // 第五個,左邊進度條
type: 'gauge',
radius: '82%',
startAngle: 210,
endAngle: 150,
min: 0,
max: 50,
axisLine: {
show: false,
},
progress: {
show: true, // 是否顯示
roundCap: false, //是否圓角
width: 16, // 寬度
itemStyle: {
opacity: 0.9,
color: new echarts.graphic.LinearGradient(
0, 0, 1, 0,
[{
offset: 0,
color: 'rgb(13,211,97)'
},
{
offset: 0.5,
color: 'rgba(48,62,245,1)'
},
{
offset: 1,
color: 'rgb(235,205,6)'
}]
)
}
},
splitLine:{
show: false,
},
axisLabel: {
show: false,
},
axisTick: {
length: 14,
distance: -9,
lineStyle: {
color: '#eee',
width: 1
}
},
pointer:{
show:false,
},
detail: { // 是否顯示數(shù)據(jù)詳情
valueAnimation: true, // 開啟動畫
fontSize: 40,
fontFamily: 'DIN Alternate',
offsetCenter: ['-120%', '18%'],
formatter: '{value} ℃',
color: 'inherit'
},
data: [
{
value: 26,
name: ''
}
]
},
{ // 第六個衍锚,右邊進度條
type: 'gauge',
radius: '80%',
startAngle: -30,
endAngle: 30,
min: 0,
max: 100,
clockwise: false, //逆時針增長
axisLine: {
show: false,
},
progress: {
show: true, // 是否顯示
roundCap: false, //是否圓角
width: 16, // 寬度
itemStyle: {
opacity: 0.9,
color: '#f00'
}
},
splitLine:{
show: false,
},
axisLabel: {
show: false,
},
axisTick: {
length: 14,
distance: -10,
lineStyle: {
color: '#eee',
width: 1
}
},
pointer:{
show:false,
},
detail: { // 是否顯示數(shù)據(jù)詳情
valueAnimation: true, // 開啟動畫
fontSize: 40,
fontFamily: 'DIN Alternate',
offsetCenter: ['120%', '18%'],
formatter: '{value} %',
color: 'inherit'
},
data: [
{
value: 10,
name: ''
}
]
}
]
};
echarts 多個儀表盤匠题,進度條反向边涕,漸變色
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門划鸽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人戚哎,你說我怎么就攤上這事裸诽。” “怎么了建瘫?”我有些...
- 文/不壞的土叔 我叫張陵崭捍,是天一觀的道長。 經(jīng)常有香客問我啰脚,道長殷蛇,這世上最難降的妖魔是什么实夹? 我笑而不...
- 正文 為了忘掉前任,我火速辦了婚禮粒梦,結(jié)果婚禮上亮航,老公的妹妹穿的比我還像新娘。我一直安慰自己匀们,他們只是感情好缴淋,可當我...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著泄朴,像睡著了一般重抖。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上祖灰,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼畴蒲!你這毒婦竟也來了悠鞍?” 一聲冷哼從身側(cè)響起,我...
- 正文 年R本政府宣布,位于F島的核電站怔匣,受9級特大地震影響握联,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
- 文/蒙蒙 一金闽、第九天 我趴在偏房一處隱蔽的房頂上張望纯露。 院中可真熱鬧,春花似錦代芜、人聲如沸埠褪。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽钞速。三九已至,卻和暖如春嫡秕,著一層夾襖步出監(jiān)牢的瞬間渴语,已是汗流浹背。 一陣腳步聲響...