What problem does this feature solve?
by this feature. Styles can be more customized.
What does the proposed API look like?
series: [
{
type: 'gauge',
splitLine: {
length: 15,
lineStyle: function(item, index) {
// so can change the style by index
return {
width: index,
color: '#999'
}
},
}
]
1条答案
按热度按时间mqkwyuun1#
Expect more properties to support more customization in the form of function callback.
such as : function(item, index) {}