litaotaot opened a new issue, #18805:
URL: https://github.com/apache/echarts/issues/18805

   ### Version
   
   5.4
   
   ### Link to Minimal Reproduction
   
   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
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to