首頁 > 軟體

JavaScript視覺化與Echarts詳細介紹

2022-07-30 14:00:23

一、視覺化介紹

  • 視覺化:將資料用圖表展示出來,讓資料更加直觀、讓資料特點更加突出
  • 應用場景:行銷資料、生產資料、使用者資料

二、視覺化庫介紹

常見的資料視覺化庫:

  • D3.js:目前 Web 端評價最高的 Javascript 視覺化工具庫(入手難)
  • ECharts.js:百度出品的一個開源 Javascript 資料視覺化庫
  • Highcharts.js:國外的前端資料視覺化庫,非商用免費,被許多國外大公司所使用
  • AntV:螞蟻金服全新一代資料視覺化解決方案等等
  • Highcharts 和 Echarts 就像是 Office 和 WPS 的關係

ECharts:一個使用 JavaScript 實現的開源視覺化庫,可以流暢的執行在 PC 和移動裝置上,相容當前絕大部分瀏覽器(IE8/9/10/11,Chrome,Firefox,Safari等),底層依賴向量圖形庫 ZRender,提供直觀,互動豐富,可高度個性化客製化的資料視覺化圖表

三、Echarts

Echarts引入和使用

下載echarts(庫) 引入檔案到html頁面中

<script src="./src/echarts.js"></script>

準備一個DOM容器

<style>
    .box {
		width: 400px;
		height: 400px;
		cursor: pointer;
	}
</style>
<div class='box'></div>

初始化一個echarts物件

var box = document.querySelector(".box")
var echarts1 = echarts.init(box)

指定設定項和資料

var option = {
	title: {
		text: 'ECharts 入門範例'
	},
	tooltip: {},
	legend: {
		data: ['銷量']
	},
	xAxis: {
		data: ['襯衫', '羊毛衫', '雪紡衫', '褲子', '高跟鞋', '襪子']
	},
	yAxis: {},
	series: [{
		name: '銷量',
		type: 'bar',
		data: [5, 20, 36, 10, 10, 20]
	}]
}

將設定項設定給echarts範例物件

echarts1.setOption(option)

瞭解基礎設定

title:標題元件,包含主標題和副標題

tooltip:提示框元件

legend:圖例元件

series

系列列表:每個系列通過 type 決定自己的圖表型別

xAxis:直角座標系 grid 中的 x 軸

boundaryGap: 座標軸兩邊留白策略 true,這時候刻度只是作為分隔線,標籤和資料點都會在兩個刻度之間的帶(band)中間

yAxis:直角座標系 grid 中的 y 軸

grid:直角座標系內繪圖網格

color:調色盤顏色列表

注:不要求全部記憶,只需要知道怎麼在官方檔案上查詢學習

官方檔案:Documentation - Apache ECharts

(1)範例:標題元件title

              title: {
					show: true,          //是否顯示標題元件
					text: '主標題',
					link: "http://www.baidu.com",   //主標題文字超連結
					textStyle: {                   //主標題的文字樣式 相當於css的
						color: "blue",
						fontWeight: "100"
					},
					subtext: "副標題",
					subtextStyle: {               //副標題的文字樣式
						color: "red",
						fontWeight: "100",
						fontSize: "20px"
					},
					textAlign: "auto",         //整體(包括 text 和 subtext)的水平對齊
					textVerticalAlign: "auto", //整體(包括 text 和 subtext)的垂直對齊
					padding: [5, 10],          //標題內邊距
					left: 400,                 //title 元件離容器左側的距離
					backgroundColor: "yellow"   //標題背景色,預設透明
				},

(2)範例:工具元件toolbox

                toolbox: {
					//設定工具
					feature: {
						mytool: {    //自定義的工具名字,只能以 my 開頭
							show: true,
							title: "自定義擴充套件方法",
							icon: "image://https://img2.baidu.com/it/u=1814268193,3619863984&fm=253&app=138&size=w931&n=0&f=JPEG&fmt=auto?sec=1658941200&t=d5f42a41eab8af5c9929fcc6f9e1eff7",
							onclick: function() {
								console.log("點選事件")
							}
						},
						saveAsImage: {
							name: "儲存"
						},
						restore: {      //設定項還原
						},
						dataView: { //資料檢視工具,可展現當前圖表所用的資料,編輯後可動態更新
						},
						dataZoom: {},    //資料區域縮放
						magicType: {      //動態型別切換
							type: ['line', 'bar', 'stack']
						}
					}
				},

(3)範例:提示框元件tooltip

            tooltip: {
					show: true,
					trigger: "axis", //觸發型別 "none"||"axis"
					showContent: false,   // 是否顯示提示框浮層
					alwaysShowContent: true,  //是否永遠顯示提示框內容
					triggerOn: "click",         //提示框觸發的條件
					backgroundColor: "gold",
					textStyle: {
						color: "white"
					},
					axisPointer: {     //是設定座標軸指示器的快捷方式
						type: "cross",  //指示器型別 line shadow none cross
						axis: "x",      //指示器的座標軸
						snap: true,     //座標軸指示器是否自動吸附到點上
                        label: {        //座標軸指示器的文字標籤
							show: true,
							color: "red",
						 	formatter: ({    //文字標籤文字的格式化器
						 		value
						 	}) => {
								console.log(value)
						 		return `--${value}` //value*2
						 	}
						 }
					}
				},

(4)範例:圖例元件legend

legend: {
					type: "scroll",     //圖例的型別 plain普通圖例 scroll可捲動翻頁的圖例
					orient: "vertical",  //圖例列表的佈局朝向 vertical horizontal
					data: [{
						name: '銷量1',   //圖例項的名稱
						icon: "circle",   //圖例項的 icon
						itemStyle: {
							color: "red"
						}
					}, {
						name: '銷量2',
						icon: "rect",
						itemStyle: {
							color: "red"
						}
					}, {
						name: '純利1',
						icon: "triangle",
						textStyle: {
							color: "red",
							fontSize: "20px"
						}
					}, {
						name: '純利2',
						icon: "path://",   //'path://' 將圖示設定為任意的向量路徑
						icon: "image://url",       //通過圖片連結設定為圖片
						icon:  "image://https://img2.baidu.com/it/u=1814268193,3619863984&fm=253&app=138&size=w931&n=0&f=JPEG&fmt=auto?sec=1658941200&t=d5f42a41eab8af5c9929fcc6f9e1eff7"   //通過圖片編碼設定為圖片
					  }]
				   },

(5)範例:系列列表series

              series: [{
					name: "某某系列1",
					type: 'line',
					colorBy: "series", //按系列分配調色盤中的顏色,同一系列中的所有資料都是用相同的顏色  
					symbol: "rect",     //標記的圖形 設定拐點 
					cursor: "move",
					label: {
						show: true    //是否顯示標籤文字
					},
					endLabel: {       //折線端點的標籤
						show: true
					},
					labelLine: {
						show: true,   //是否顯示連線線
						smooth: true    //是否平滑
					},
					lineStyle: {       //標籤的視覺引導線設定
						color: "red",
						width: 2,
						join: "miter"  //設定2個長度不為0的相連部分如何連線在一起的屬性
					},
					smooth: 0.3,
					data: [420, 432, 401, 434, 190, 130, 120],
				}, {
					name: "某某系列2",
					type: 'line',
					symbol: "arrow",
					symbolSize: 10,     // 拐點大小   
					data: [860, 962, 961, 964, 1260, 1360, 1360],
				}]
			};

(6)範例:直角座標系 grid 中的 x、y軸(類似)

 xAxis: {
     show: true;  //是否顯示x軸                
     data: ['襯衫', '羊毛衫', '雪紡衫', '褲子', '高跟鞋', '襪子']   //類目資料,在類目軸
     position:'top'   //x軸的位置
     name:'座標軸的名稱'
     axisTick: {
         show: false // 去除刻度線
     },
     axisLabel: {
         color: '#4c9bfd' // 文字顏色
     },
     axisLine: {
         show: false // 去除軸線
     },
     boundaryGap: false  // 去除軸內間距
 },

(7)藍丁格爾玫瑰圖

<style>
    .box {
      width: 500px;
      height: 500px;
    }
</style>
<div class="box"></div>
<script>
    var box = document.querySelector(".box")
    var ect = echarts.init(box)
    option = {
      title: {
        text: 'Nightingale Chart',
        subtext: 'Fake Data',
        left: 'center'
      },
      tooltip: {
        trigger: 'item',
        formatter: '{a} <br/>{b} : {c} ({d}%)'
      },
      toolbox: {
        show: true,
        feature: {
          mark: {
            show: true
          },
          dataView: {
            show: true,
            readOnly: false
          },
          restore: {
            show: true
          },
          saveAsImage: {
            show: true
          }
        }
      },
      series: [{
        name: '面積模式',
        type: 'pie',
        radius: [30, 110],
        center: ['25%', '50%'],
        roseType: 'radius',
        color: ['#006cff', '#60cda0', '#ed8884', '#ff9f7f', '#0096ff', '#9fe6b8', '#32c5e9', '#1d9dff'],
        itemStyle: {
          borderRadius: 5
        },
        label: {
          show: false,
          fontSize: 10
        },
        emphasis: {
          label: {
            show: true
          }
        },
        labelLine: {
          // 連線扇形圖線長
          length: 6,
          // 連線文字線長
          length2: 8
        },
        data: [{
            value: 20,
            name: '雲南'
          },
          {
            value: 26,
            name: '北京'
          },
          {
            value: 24,
            name: '山東'
          },
          {
            value: 25,
            name: '河北'
          },
          {
            value: 20,
            name: '江蘇'
          },
          {
            value: 25,
            name: '浙江'
          },
          {
            value: 30,
            name: '四川'
          },
          {
            value: 42,
            name: '湖北'
          }
        ]
      }, ]
    };
    ect.setOption(option)
</script>

效果圖:

到此這篇關於JavaScript視覺化與Echarts詳細介紹的文章就介紹到這了,更多相關JavaScript視覺化與Echarts內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com