Hello, I’m trying to reproduce the “gauge-stage” example from Apache ECharts:
https://echarts.apache.org/examples/en/editor.html?c=gauge-stage
which uses this JS configuration:
axisLine: {
lineStyle: {
color: [
[0.3, '#67e0e3'],
[0.7, '#37a2da'],
[1, '#fd666d']
]
}
}
- Is there a supported way in
Vizor.ECharts to specify a multi-range Color array for axisLine.lineStyle?
- If not yet implemented, could this feature be added in a future release?
Any guidance or example would be greatly appreciated. Thank you!