色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

javascript 圖表庫

王浩然1年前7瀏覽0評論

JavaScript圖表庫是一種用于網頁開發的強大工具,它可以讓開發者輕松創建漂亮的圖表來展示數據。

其中,最常用的三個圖表庫是:D3.js、Echarts、Highcharts。

D3.js是一個強大的數據可視化工具庫,它提供了各種基本圖形(如折線圖、柱狀圖等)的繪制方法,開發者可以基于這些基本圖形進行擴展。它的最大特色就是能夠把數據以動態形式呈現出來。例如我們可以使用D3.js來畫出以下圖表:

var data = [1, 2, 3, 4, 5]; 
var svg = d3.select("body").append("svg").attr("width", 250).attr("height", 250); 
var circles = svg.selectAll("circle").data(data).enter().append("circle");
circles.attr("cx", function(d, i){ return (i * 50) + 25;})
.attr("cy", 25)
.attr("r", function(d){ return d;});

Echarts是百度開發的一個開源圖表庫,它具有圖形可定制程度高、大量圖表種類、交互靈活等優點。以下是Echarts的示例代碼:

var chart = echarts.init(document.getElementById('chart'));
var option = {
legend: {},
tooltip: {},
dataset: {
source: [
['Product', '2012', '2013', '2014', '2015', '2016', '2017'],
['Matcha Latte', 41.1, 30.4, 65.1, 53.3, 83.8, 98.7],
['Milk Tea', 86.5, 92.1, 85.7, 83.1, 73.4, 55.1],
['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4, 65.2, 82.5],
['Walnut Brownie', 55.2, 67.1, 69.2, 72.4, 53.9, 39.1]
]
},
xAxis: {type: 'category'},
yAxis: {},
series: [
{type: 'bar'},
{type: 'bar'},
{type: 'bar'},
{type: 'bar'},
{type: 'bar'},
{type: 'bar', showBackground: true, backgroundStyle: {color: 'rgba(220, 220, 220, 0.8)'}}
]
};
chart.setOption(option);

Highcharts是一個使用JavaScript創建交互式圖表的庫,它的優點在于易于使用、外觀精美、跨瀏覽器兼容性好。以下是Highcharts的示例代碼:

var chart = Highcharts.chart('container', {
title: {
text: 'Monthly Average Temperature',
x: -20 //center
},
subtitle: {
text: 'Source: WorldClimate.com',
x: -20
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
yAxis: {
title: {
text: 'Temperature (°C)'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: '°C'
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
borderWidth: 0
},
series: [{
name: 'Tokyo',
data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
}, {
name: 'New York',
data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
}, {
name: 'Berlin',
data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
}, {
name: 'London',
data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
}]
});

以上三種JavaScript圖表庫都非常實用,可以根據具體需求選擇相應的庫并參考文檔進行學習使用。

下一篇facebook php