您將不得不在軸和多行系列中添加多個字段標籤以繪製每行,如下所示。
series: [{
type: 'line', //Plots sin
axis: 'left',
xField: 'theta',
yField: 'sin',
smooth: true,
style: {
'stroke-width': 4
},
markerConfig: {
radius: 4
},
highlight: {
shadow: false,
fill: '#000',
radius: 5,
'stroke-width': 2,
stroke: '#fff'
}
}, {
type: 'line', //Plots cos
axis: 'left',
xField: 'theta',
yField: 'cos',
smooth: true,
style: {
'stroke-width': 4
},
markerConfig: {
radius: 4
},
highlight: {
shadow: false,
fill: '#000',
radius: 5,
'stroke-width': 2,
stroke: '#fff'
}
},{
type: 'line', //Plots sin
axis: 'left',
xField: 'theta',
yField: 'tan',
smooth: true,
style: {
'stroke-width': 4
},
markerConfig: {
radius: 4
},
highlight: {
shadow: false,
fill: '#000',
radius: 5,
'stroke-width': 2,
stroke: '#fff'
}
}]