forked from github/dataease
Merge pull request #12333 from ulleo/dev-v2
pref(图表): 双轴图折线类型的折点描边颜色跟随透明度设置
This commit is contained in:
commit
9141de1cd0
@ -240,7 +240,10 @@ export class ColumnLineMix extends G2PlotChartView<DualAxesOptions, DualAxes> {
|
|||||||
const smooth = s.lineSmooth
|
const smooth = s.lineSmooth
|
||||||
const point = {
|
const point = {
|
||||||
size: s.lineSymbolSize,
|
size: s.lineSymbolSize,
|
||||||
shape: s.lineSymbol
|
shape: s.lineSymbol,
|
||||||
|
style: {
|
||||||
|
stroke: hexColorToRGBA('#FFFFFF', s.subAlpha)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
const lineStyle = {
|
const lineStyle = {
|
||||||
lineWidth: s.lineWidth
|
lineWidth: s.lineWidth
|
||||||
@ -248,7 +251,10 @@ export class ColumnLineMix extends G2PlotChartView<DualAxesOptions, DualAxes> {
|
|||||||
const leftSmooth = s.leftLineSmooth
|
const leftSmooth = s.leftLineSmooth
|
||||||
const leftPoint = {
|
const leftPoint = {
|
||||||
size: s.leftLineSymbolSize,
|
size: s.leftLineSymbolSize,
|
||||||
shape: s.leftLineSymbol
|
shape: s.leftLineSymbol,
|
||||||
|
style: {
|
||||||
|
stroke: hexColorToRGBA('#FFFFFF', s.alpha)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
const leftLineStyle = {
|
const leftLineStyle = {
|
||||||
lineWidth: s.leftLineWidth
|
lineWidth: s.leftLineWidth
|
||||||
|
Loading…
Reference in New Issue
Block a user