Antv G2plot学习笔记(一)

Antv G2plot学习笔记(一)

官方网址:https://g2plot.antv.vision/zh

在执行官方的实例中,发现无法将数据进行图表展示,经过好友的分享和实践发现是出在变量引用不到的问题,之前的const linePlot = new Line() 无法获取到,修改为G2Plot.Line() 即可,下面是我写的实例,仅供参照。

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<script src="https://unpkg.com/@antv/g2plot@latest/dist/g2plot.js"></script>
	</head>
	
	
	<body>

			<div id="canvas"></div>

		
	</body>
	<script type="text/javascript">
	
	    const data = [
	      { year: '1991', value: 3 },
	      { year: '1992', value: 4 },
	      { year: '1993', value: 3.5 },
	      { year: '1994', value: 5 },
	      { year: '1995', value: 4.9 },
	      { year: '1996', value: 6 },
	      { year: '1997', value: 7 },
	      { year: '1998', value: 9 },
	      { year: '1999', value: 13 },
	    ];
		
		const linePlot = new G2Plot.Line('canvas', {
		  data,
		  xField: 'year',
		  yField: 'value',
		});
		
		linePlot.render();
	</script>
</html>

好友的文章
链接: https://blog.csdn.net/qq_43726671/article/details/105270412.

你可能感兴趣的:(前端,html,javascript)