ahoiroman opened a new issue, #16885:
URL: https://github.com/apache/echarts/issues/16885
### What problem does this feature solve?
I got a gauge defined like this:
```js
{
type: 'gauge',
min: 0,
max: 10,
startAngle: 180,
endAngle: 0,
itemStyle: {
color: '#6b7280',
},
pointer: {
width: 2,
length: '65%',
offsetCenter: ['0', '8%']
},
progress: {
show: true,
overlap: true,
roundCap: true
},
axisLine: {
lineStyle: {
width: 5,
color: [
[0.75, '#71717a'],
[1, '#a1a1aa']
]
},
},
splitLine: {
show: false,
distance: 0,
length: 10
},
axisLabel: {
show: false
},
axisTick: {
show: false
},
detail: {
show: false,
},
radius: '100%',
center: ['50%', '75%'],
},
```
<img width="286" alt="Bildschirmfoto 2022-04-14 um 11 38 12@2x"
src="https://user-images.githubusercontent.com/23051150/163358779-81d166bc-f53c-4cea-8ac2-a9b39cf8b0e7.png">
I'd like to change the cursor of the chart's canvas element to be a pointer
but I don't find anything in the docs about this.
If I hover the canvas, the cursor is the default OSX-cursor.
### What does the proposed API look like?
Actually, I am not a good enough JS dev to make a good proposal here :-(
--
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]