echarts 各個配置項詳細說明總結
阿新 • • 發佈:2020-07-06
theme = {
// 全圖預設背景
// backgroundColor: 'rgba(0,0,0,0)',
// 預設色板
color: ['#ff7f50','#87cefa','#da70d6','#32cd32','#6495ed',
'#ff69b4','#ba55d3','#cd5c5c','#ffa500','#40e0d0',
'#1e90ff','#ff6347','#7b68ee','#00fa9a','#ffd700',
'#6699FF','#ff6666','#3cb371','#b8860b','#30e0e0'],
// 圖表標題
title: {
x: 'left', // 水平安放位置,預設為左對齊,可選為:
// 'center' ¦ 'left' ¦ 'right'
// ¦ {number}(x座標,單位px)
y: 'top', // 垂直安放位置,預設為全圖頂端,可選為:
// 'top' ¦ 'bottom' ¦ 'center'
// ¦ {number}(y座標,單位px)
//textAlign: null // 水平對齊方式,預設根據x設定自動調整
backgroundColor: 'rgba(0,0,0,0)',
borderColor: '#ccc', // 標題邊框顏色
borderWidth: 0, // 標題邊框線寬,單位px,預設為0(無邊框)
padding: 5, // 標題內邊距,單位px,預設各方向內邊距為5,
// 接受陣列分別設定上右下左邊距,同css
itemGap: 10, // 主副標題縱向間隔,單位px,預設為10,
textStyle: {
fontSize: 18,
fontWeight: 'bolder',
color: '#333' // 主標題文字顏色
},
subtextStyle: {
color: '#aaa' // 副標題文字顏色
}
},
// 圖例
legend: {
orient: 'horizontal', // 佈局方式,預設為水平佈局,可選為:
// 'horizontal' ¦ 'vertical'
x: 'center', // 水平安放位置,預設為全圖居中,可選為:
// 'center' ¦ 'left' ¦ 'right'
// ¦ {number}(x座標,單位px)
y: 'top', // 垂直安放位置,預設為全圖頂端,可選為:
// 'top' ¦ 'bottom' ¦ 'center'
// ¦ {number}(y座標,單位px)
backgroundColor: 'rgba(0,0,0,0)',
borderColor: '#ccc', // 圖例邊框顏色
borderWidth: 0, // 圖例邊框線寬,單位px,預設為0(無邊框)
padding: 5, // 圖例內邊距,單位px,預設各方向內邊距為5,
// 接受陣列分別設定上右下左邊距,同css
itemGap: 10, // 各個item之間的間隔,單位px,預設為10,
// 橫向佈局時為水平間隔,縱向佈局時為縱向間隔
itemWidth: 20, // 圖例圖形寬度
itemHeight: 14, // 圖例圖形高度