82Echarts - 散点图(Master Painter Color Choices Throughout History)

匿名 (未验证) 提交于 2019-12-02 23:32:01
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_20042935/article/details/89839625

效果图

源代码

myChart.showLoading();  $.get('data/asset/data/masterPainterColorChoice.json', function (json) {     myChart.hideLoading();      var data = json[0].x.map(function (x, idx) {         return [+x, +json[0].y[idx]];     });      myChart.setOption(option = {         title: {             text: 'Master Painter Color Choices Throughout History',             subtext: 'Data From Plot.ly',             left: 'right'         },         tooltip: {             trigger: 'axis',             axisPointer: {                 type: 'cross'             }         },         xAxis: {             type: 'value',             splitLine: {                 show: false             },             scale: true,             splitNumber: 5,             max: 'dataMax',             axisLabel: {                 formatter: function (val) {                     return val + 's';                 }             }         },         yAxis: {             type: 'value',             min: 0,             max: 360,             interval: 60,             name: 'Hue',             splitLine: {                 show: false             }         },         series: [{             name: 'scatter',             type: 'scatter',             symbolSize: function (val, param) {                 return json[0].marker.size[param.dataIndex] / json[0].marker.sizeref;             },             itemStyle: {                 normal: {                     color: function (param) {                         return json[0].marker.color[param.dataIndex];                     }                 }             },             data: data         }]     }); }); 
文章来源: https://blog.csdn.net/qq_20042935/article/details/89839625
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!