Gauge - Anticlockwise
See original GitHub issueVersion
4.2.1
Steps to reproduce
Create a gauge with the following option
option = {
series: [
{
type: 'gauge',
detail: {formatter:'{value}%'},
data: [{value: 50}],
min:0,
max:100,
startAngle:0,
endAngle:180,
clockwise:false //anitclockwise
}
]
}
However, setting clockwise
to true
breaks the axis line.
option = {
series: [
{
type: 'gauge',
detail: {formatter:'{value}%'},
data: [{value: 50}],
min:0,
max:100,
startAngle:0,
endAngle:180,
clockwise:true
}
]
}
What is expected?
The gauge to be created anticlockwise along with the pointer animation.
What is actually happening?
Both the gauge and pointer animation are clockwise.
The only way I could make it anticlockwise was by swapping min
/max
and startAngle
/endAngle
. But unfortunately, the pointer animation remained clockwise.
option = {
series: [
{
type: 'gauge',
detail: {formatter:'{value}%'},
data: [{value: 50}],
min:100,
max:0,
startAngle:180,
endAngle:0,
clockwise:true
}
]
}
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Dial Gauges, Counter-Clockwise Rotation
These counter-clockwise dial gauges are built to American Gauge Design Specifications for accuracy and are used in field and laboratory testing ...
Read more >Kafer Dial Gauge M 2/30 T anticlockwise dial | Dial Gauges ...
Dial Gauge M 2/30 T anticlockwise dial ; Reading, 0.01 mm ; Range per revolution, 1 mm ; Range, 30 mm ; Bezel-Ø,...
Read more >Massey Ferguson Tractor Gauge Kit + Tachometer Anti ...
Massey Ferguson Tractor Gauge Kit + Tachometer Anti Clockwise-35, 133, 135, 140 ; FREE delivery January 17 - 27. Details ; Qty:1 ;...
Read more >Massey Ferguson Tractor Gauge Tachometer Anti ... - eBay
Massey Ferguson Gauges. ... Massey Ferguson Tractor Gauge Kit Tachometer Anti Clockwise-35 , 133, 135, 140. $34.12. $68.42. + $5.00 shipping.
Read more >Gauge - Anticlockwise · Issue #11080 · apache/echarts - GitHub
Both the gauge and pointer animation are clockwise. The only way I could make it anticlockwise was by swapping min / max and...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
clockwise
represents the growth direction of scale values on the gaugeHi, I’ve found a related issue. The pointer points the proper value but it maintains the clockwise color. I also toggled min/max and startAngle/endAngle values