echarts [Bug] grid3D.axisPointer.label.textStyle 不生效

vuktfyat  于 4个月前  发布在  Echarts
关注(0)|答案(1)|浏览(93)

Version

5.4

https://echarts.apache.org/examples/zh/editor.html?c=line3d-orthographic&gl=1

Steps to Reproduce

var data = [];
// Parametric curve
for (var t = 0; t < 25; t += 0.001) {
var x = (1 + 0.25 * Math.cos(75 * t)) * Math.cos(t);
var y = (1 + 0.25 * Math.cos(75 * t)) * Math.sin(t);
var z = t + 2.0 * Math.sin(75 * t);
data.push([x, y, z]);
}
console.log(data.length);
option = {
tooltip: {},
backgroundColor: '#fff',
visualMap: {
show: false,
dimension: 2,
min: 0,
max: 30,
inRange: {
color: [
'#313695',
'#4575b4',
'#74add1',
'#abd9e9',
'#e0f3f8',
'#ffffbf',
'#fee090',
'#fdae61',
'#f46d43',
'#d73027',
'#a50026'
]
}
},
xAxis3D: {
type: 'value'
},
yAxis3D: {
type: 'value'
},
zAxis3D: {
type: 'value',
},
grid3D: {
viewControl: {
projection: 'orthographic'
},
axisPointer: {
label: {
show: true,
textStyle: {
color: 'red',
fontSize: 28
},
}
}
},
series: [
{
type: 'line3D',
data: data,
lineStyle: {
width: 4
}
}
]
};

Current Behavior

1、指示线的textStyle设置无效

Expected Behavior

1、指示线的textStyle设置生效

Environment

- OS:
- Browser:
- Framework:

Any additional comments?

No response

xxe27gdn

xxe27gdn1#

@litaotaot It seems you are not using English, I've helped translate the content automatically. To make your issue understood by more people and get helped, we'd like to suggest using English next time. 🤗
TRANSLATED

TITLE

[Bug] grid3D.axisPointer.label.textStyle does not take effect

相关问题