forked from github/dataease
commit
58a70085e0
@ -178,8 +178,12 @@ export class Area extends G2PlotChartView<AreaOptions, G2Area> {
|
|||||||
let areaStyle
|
let areaStyle
|
||||||
if (customAttr.basicStyle.gradient) {
|
if (customAttr.basicStyle.gradient) {
|
||||||
const colorMap = new Map()
|
const colorMap = new Map()
|
||||||
|
const yAxis = parseJson(chart.customStyle).yAxis
|
||||||
|
const axisValue = yAxis.axisValue
|
||||||
|
const start =
|
||||||
|
!axisValue?.auto && axisValue.min && axisValue.max ? axisValue.min / axisValue.max : 0
|
||||||
areaStyle = item => {
|
areaStyle = item => {
|
||||||
let ele
|
let ele: string
|
||||||
const key = `${item.field}-${item.category}`
|
const key = `${item.field}-${item.category}`
|
||||||
if (colorMap.has(key)) {
|
if (colorMap.has(key)) {
|
||||||
ele = colorMap.get(key)
|
ele = colorMap.get(key)
|
||||||
@ -189,9 +193,12 @@ export class Area extends G2PlotChartView<AreaOptions, G2Area> {
|
|||||||
}
|
}
|
||||||
if (ele) {
|
if (ele) {
|
||||||
return {
|
return {
|
||||||
fill: setGradientColor(hexColorToRGBA(ele, alpha), true, 270)
|
fill: setGradientColor(hexColorToRGBA(ele, alpha), true, 270, start)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return {
|
||||||
|
fill: 'rgba(255,255,255,0)'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
|
@ -800,11 +800,20 @@ export function getLineDash(type) {
|
|||||||
* @param rawColor 原始 RGBA 颜色
|
* @param rawColor 原始 RGBA 颜色
|
||||||
* @param show
|
* @param show
|
||||||
* @param angle 渐变角度
|
* @param angle 渐变角度
|
||||||
|
* @param start 起始值
|
||||||
*/
|
*/
|
||||||
export function setGradientColor(rawColor: string, show = false, angle = 0) {
|
export function setGradientColor(rawColor: string, show = false, angle = 0, start = 0) {
|
||||||
const item = rawColor.split(',')
|
const item = rawColor.split(',')
|
||||||
item.splice(3, 1, '0.3)')
|
item.splice(3, 1, '0.3)')
|
||||||
return show ? `l(${angle}) 0:${item.join(',')} 1:${rawColor}` : rawColor
|
let color: string
|
||||||
|
if (start == 0) {
|
||||||
|
color = `l(${angle}) 0:${item.join(',')} 1:${rawColor}`
|
||||||
|
} else if (start > 0) {
|
||||||
|
color = `l(${angle}) 0:rgba(255,255,255,0) ${start}:${item.join(',')} 1:${rawColor}`
|
||||||
|
} else {
|
||||||
|
color = `l(${angle}) 0:rgba(255,255,255,0) 0.1:${item.join(',')} 1:${rawColor}`
|
||||||
|
}
|
||||||
|
return show ? color : rawColor
|
||||||
}
|
}
|
||||||
|
|
||||||
export function transAxisPosition(position: string): string {
|
export function transAxisPosition(position: string): string {
|
||||||
|
Loading…
Reference in New Issue
Block a user