Summary:
G2 is a set of graphically-based graphical syntax that is data-driven and highly user-friendly and extensible, allowing users to build a wide variety of interactive statistics without having to worry about detailed implementation details chart.
G2 是一套基于可视化编码的图形语法,以数据驱动,具有高度的易用性和扩展性,用户无需关注各种繁琐的实现细节,一条语句即可构建出各种各样的可交互的统计图表。
您将从这个教程中学到什么
- 如何引入js文件
- 如何定义容器
- 如何定义数据
- 如何引用数据
- 如何定义图例
- 如何渲染图表
学习此教程的必备条件
教程难度
- 容易
教程内容
演示效果
1. 知识点A - 如何引入js文件
<script src="./js/g2.min.js"></script>
<script src="./js/data-set.min.js"></script>
使用内嵌对js文件进行引入,用于后期图表使用。
2. 知识点B - 如何定义容器
<div id="duojietizhexian"></div>
使用定义容器,用于展示图表。容器名:duojietizhexian。
3. 知识点C - 如何定义数据
const data = [
{ yuefen: 'January', zhexian2: 50, zhexian1: 120 },
{ yuefen: 'February', zhexian2: 90, zhexian1: 130 },
{ yuefen: 'March', zhexian2: 30, zhexian1: 140 },
{ yuefen: 'April', zhexian2: 60, zhexian1: 159 },
{ yuefen: 'May', zhexian2: 50, zhexian1: 134 },
{ yuefen: 'June', zhexian2: 55, zhexian1: 140 },
{ yuefen: 'July', zhexian2: 58, zhexian1: 177 },
{ yuefen: 'Auguest', zhexian2: 70, zhexian1: 195 },
{ yuefen: 'September', zhexian2: 98, zhexian1: 120 },
{ yuefen: 'October', zhexian2: 100, zhexian1: 135 },
{ yuefen: 'November', zhexian2: 90, zhexian1: 115 },
{ yuefen: 'December', zhexian2: 50, zhexian1: 90 }
];
- data:使用数组形式定义数据。
- 格式:{名称:'对应值',名称:对应值,名称:对应值}
4. 知识点D - 如何引用数据
const chart = new G2.Chart({
container: 'duojietizhexian',
forceFit: true,
height: window.innerHeight
});
chart.source(dv, {
yuefen: {
range: [ 0, 1 ]
}
});
- container:定于数据从duojietizhexian数组取值。
- forceFit: 定义图表的宽度自适应开关,默认为 false,设置为 true 时表示自动取 dom(实例容器)的宽度。
- height: 定义图表高度。
- source:定义为chart装载数据,返回chart对象。
- range:定义输出数据的范围,默认[ 0, 1 ],格式为 [ min, max ],min 和 max 均为 0 至 1 范围的数据。
5. 知识点E - 如何定义图例
const ds = new DataSet();
const dv = ds.createView().source(data);
dv.transform({
type: 'fold',
fields: [ 'zhexian1', 'zhexian2' ],
key: 'key',
value: 'value',
});
- type:属性为fold,以指定字段集为key,展开数据。。
- fields:定义图例名称。
- key:定义key值。
- value:定义value值。
6. 知识点F - 如何渲染图表
chart.line().position('yuefen*value').shape('hv').color('key');
chart.render();
- line:定义线图组件。
- position:定义将数据值映射到图形的位置上的方法。
格式:position('fieldAfieldB')*使用 * 连接,position 属性会对多个字段进行数据的映射。 - render:图表绘制的最后一步,用于将图表渲染至画布。
完整代码
<html lang="en">
<head>
<meta charset="UTF-8">
<title>多条阶梯折线图</title>
</head>
<body>
<div id="duojietizhexian"></div>
<script src="./js/g2.min.js"></script>
<script src="./js/data-set.min.js"></script>
<script>
const data = [
{ yuefen: 'January', zhexian2: 50, zhexian1: 120 },
{ yuefen: 'February', zhexian2: 90, zhexian1: 130 },
{ yuefen: 'March', zhexian2: 30, zhexian1: 140 },
{ yuefen: 'April', zhexian2: 60, zhexian1: 159 },
{ yuefen: 'May', zhexian2: 50, zhexian1: 134 },
{ yuefen: 'June', zhexian2: 55, zhexian1: 140 },
{ yuefen: 'July', zhexian2: 58, zhexian1: 177 },
{ yuefen: 'Auguest', zhexian2: 70, zhexian1: 195 },
{ yuefen: 'September', zhexian2: 98, zhexian1: 120 },
{ yuefen: 'October', zhexian2: 100, zhexian1: 135 },
{ yuefen: 'November', zhexian2: 90, zhexian1: 115 },
{ yuefen: 'December', zhexian2: 50, zhexian1: 90 }
];
const ds = new DataSet();
const dv = ds.createView().source(data);
dv.transform({
type: 'fold',
fields: [ 'zhexian1', 'zhexian2' ], // 展开字段集
key: 'key',
value: 'value',
});
const chart = new G2.Chart({
container: 'duojietizhexian',
forceFit: true,
height: window.innerHeight
});
chart.source(dv, {
yuefen: {
range: [ 0, 1 ]
}
});
chart.line().position('yuefen*value').shape('hv').color('key');
chart.render();
</script>
</body>
</html>
最终效果
系列课程
- 如果您喜欢我的教程,可以在我的个人档案页面,获取更多信息。
- 您可以使用zqz-tutorial标签快速查看我发布的所有教程。
Posted on Utopian.io - Rewarding Open Source Contributors
感谢阅读 希望大家喜欢我的教程
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Voteup
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
thanks~
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Your contribution cannot be approved because it does not follow the Utopian Rules.
This is the same as https://utopian.io/utopian-io/@hui.zhao/g2-how-to-use-g2-to-make-ladder-line-chart
Only an addition of code for another line. This is really not what is expected from a good contributor like you.
You can contact us on Discord.
[utopian-moderator]
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
sorry
I understand this kind of problem will not happen in the future
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit