谁能告诉我这个怎么做的啊,在哪个图的基础上,大神门,帮忙啊
echarts吧
全部回复
仅看楼主
level 1
2018年08月09日 11点08分 1
level 2
散点图和折线图 两个serious组合吧
2018年08月10日 01点08分 2
可以说的具体点吗?谢谢[哈哈]
2018年08月10日 02点08分
level 2
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: 'line',
smooth: true
},
{
type:'line',
smooth: true,
data:[120, 132, 101, 134, 90, 230, 210]
},
{
type:'line',
smooth: true,
data:[220, 182, 191, 1234,1290, 1330, 310]
},
{
type:'line',
smooth: true,
data:[150, 232, 201, 1154, 190, 330, 410]
},
{
type:'line',
smooth: true,
data:[320, 332, 301, 334, 1390, 330, 320]
},
{
type:'line',
smooth: true,
data:[820, 932, 901, 934, 1290, 1330, 1320]
},
{
data: [420, 532, 931, 935, 1274, 1330, 1320],
type: 'scatter',
symbolSize: function (data) {
return Math.sqrt(data) *1;
}
}]
};
2018年08月16日 03点08分 3
十分感谢,嘻嘻。。。。
2018年08月24日 00点08分
1